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
|
|
|
|
|
2022-06-09 09:12:55 +08:00
|
|
|
def analysestr(pythonApiPath: str) -> int:
|
2021-10-01 00:21:50 +08:00
|
|
|
pass
|
|
|
|
|
2022-06-09 09:12:55 +08:00
|
|
|
def analyseLine(line: str) -> int:
|
2021-10-01 00:21:50 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
class MyRoot(PikaStdLib.SysObj):
|
|
|
|
compiler = Compiler()
|