pikapython/tools/pikaCompiler/application.pyi

24 lines
450 B
Python
Raw Normal View History

2022-04-26 22:00:20 +08:00
#api
2021-10-01 00:21:50 +08:00
import PyInfo
import Arm2D
import PikaStdLib
from PikaObj import *
class Compiler(PikaStdLib.SysObj):
2022-04-28 11:47:37 +08:00
obj = PyInfo.pyiObj()
PyInfo.pyiMethod()
PyInfo.pyiClass()
2021-10-01 00:21:50 +08:00
line = Arm2D.Line()
def build(pythonApiPath: str, outputPath: str) -> int:
pass
def analyzestr(pythonApiPath: str) -> int:
pass
def analyzeLine(line: str) -> int:
pass
class MyRoot(PikaStdLib.SysObj):
compiler = Compiler()