mirror of
https://github.com/AdaCore/langkit.git
synced 2026-02-12 12:28:12 -08:00
9 lines
196 B
Python
9 lines
196 B
Python
from __future__ import absolute_import, division, print_function
|
|
|
|
import libfoolang as lfl
|
|
|
|
|
|
ctx = lfl.AnalysisContext()
|
|
u = ctx.get_from_buffer("test", "example")
|
|
print(u.root.p_example_holders)
|