You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
11 lines
149 B
Python
11 lines
149 B
Python
import libadalang as lal
|
|
|
|
|
|
class App(lal.App):
|
|
def process_unit(self, unit):
|
|
unit.root.dump()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
App.run()
|