Procházet zdrojové kódy

Extend comments in rules tests

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.8.0
Erez Sh před 4 roky
rodič
revize
94dd3646d4
1 změnil soubory, kde provedl 5 přidání a 2 odebrání
  1. +5
    -2
      tests/test_parser.py

+ 5
- 2
tests/test_parser.py Zobrazit soubor

@@ -106,9 +106,12 @@ class TestParsers(unittest.TestCase):
def test_comment_in_rule_definition(self):
g = Lark("""start: a
a: "a"
// A comment
// Another
// A comment
// Another comment
| "b"
// Still more

c: "unrelated"
""")
r = g.parse('b')
self.assertEqual( r.children[0].data, "a" )


Načítá se…
Zrušit
Uložit