Skip to content

Commit

Permalink
#19 [syntax] moved ast bindings to test module
Browse files Browse the repository at this point in the history
  • Loading branch information
vityaman committed Feb 9, 2024
1 parent a2dcf33 commit f2a1f0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sleepy/syntax/binding.py → test/syntax/binding.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from lark.tree import Meta

from . import (
from sleepy.syntax import (
Application,
Args,
Body,
Expand Down
4 changes: 2 additions & 2 deletions test/syntax/test_parse.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import pytest

from sleepy.syntax import ParsingError, Program
from sleepy.syntax.binding import (

from .binding import (
define,
func,
if_stmt,
Expand All @@ -10,7 +11,6 @@
program,
symbol,
)

from .parse import parse_program


Expand Down

0 comments on commit f2a1f0a

Please sign in to comment.