mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
24 lines
450 B
Python
24 lines
450 B
Python
#api
|
|
import PyInfo
|
|
import Arm2D
|
|
import PikaStdLib
|
|
from PikaObj import *
|
|
|
|
class Compiler(PikaStdLib.SysObj):
|
|
obj = PyInfo.pyiObj()
|
|
PyInfo.pyiMethod()
|
|
PyInfo.pyiClass()
|
|
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()
|