Skip to content

Commit

Permalink
Replace old parser module with new module
Browse files Browse the repository at this point in the history
Resolves #101
  • Loading branch information
iafisher committed Jan 30, 2019
1 parent c1cc46b commit c29991c
Show file tree
Hide file tree
Showing 11 changed files with 236 additions and 828 deletions.
2 changes: 1 addition & 1 deletion hera/debugger/shell.py
Expand Up @@ -13,7 +13,7 @@
)
from hera.data import DataLabel, HERAError, Label, Program, Settings
from hera.loader import load_program
from hera.parser_bespoke import parse
from hera.parser import parse
from hera.utils import BRANCHES, DATA_STATEMENTS, format_int, pad, register_to_index


Expand Down
2 changes: 1 addition & 1 deletion hera/loader.py
Expand Up @@ -9,7 +9,7 @@

from .checker import check
from .data import HERAError, Messages, Op, Settings
from .parser_bespoke import parse
from .parser import parse
from .utils import handle_messages, read_file


Expand Down

0 comments on commit c29991c

Please sign in to comment.