simpleparse.tests.test_deep_nesting | index s:\sp\simpleparse\tests\test_deep_nesting.py |
Modules | ||||||
|
Data | ||
AnyInt = <Any Integer> NullResult = <Null Children> __file__ = r'S:\sp\simpleparse\tests\test_deep_nesting.pyc' __name__ = 'simpleparse.tests.test_deep_nesting' declaration = "testparser := as?\nas := a,as?\na := 'a'\n" expectedResult = (1, [('as', 0, 4, [('a', 0, 1, <Null Children>), ('as', 1, 4, [(...), (...)])])], 4) parser = (('as', 204, ([(('as', 204, (...), 1, 1),), (('a', 21, 'a'), ('as', 204, (...), 1, 1)), ((None, 21, 'a'),)], 1), 1, 1),) result = (1, [('as', 0, 4, [('a', 0, 1, None), ('as', 1, 4, [(...), (...)])])], 4) testdata = 'aaaa' |