mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
23 lines
442 B
Python
23 lines
442 B
Python
|
import PyInfo
|
||
|
import Arm2D
|
||
|
import PikaStdLib
|
||
|
from PikaObj import *
|
||
|
|
||
|
class Compiler(PikaStdLib.SysObj):
|
||
|
obj = PyInfo.PyObj()
|
||
|
PyInfo.PyMethod()
|
||
|
PyInfo.PyClass()
|
||
|
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()
|