Files
langkit/contrib/python/manage.py
2020-06-02 13:22:02 +02:00

20 lines
479 B
Python
Executable File

#! /usr/bin/env python
from langkit.libmanage import ManageScript
class Manage(ManageScript):
def create_context(self, args):
from langkit.compile_context import CompileCtx
from language.lexer import python_lexer
from language.parser import python_grammar
return CompileCtx(lang_name='python',
lexer=python_lexer,
grammar=python_grammar)
if __name__ == '__main__':
Manage().run()