Files
Pierre-Marie de Rodat b72147bbb7 Testsuite: add types_from_lkt=True wherever possible
TN: RA22-015
2020-06-11 14:37:13 +02:00

21 lines
328 B
Python

"""
Test that the ASTNode.dump_str method works as expected.
"""
from langkit.dsl import ASTNode
from utils import build_and_run
class FooNode(ASTNode):
pass
class Example(FooNode):
pass
build_and_run(lkt_file='expected_concrete_syntax.lkt', py_script='main.py',
types_from_lkt=True)
print('Done')