Files
langkit/contrib/python/manage.py

20 lines
479 B
Python
Raw Permalink Normal View History

#! /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()