snapshot before regression test

This commit is contained in:
t
2026-07-18 19:25:40 +08:00
commit 796222a300
2295 changed files with 206453 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
"""
Auto-generated Python stub file from namespace_defs.py
Module: namespace_defs
"""
import stdio
import t, c
@t.CVTable
class Widget:
id: t.CInt
def __init__(self: Widget, i: t.CInt) -> t.CInt: pass
def GetId(self: Widget) -> t.CInt: pass
def Render(self: Widget) -> t.CInt: pass
class Gadget(Widget):
extra: t.CInt
def __init__(self: Gadget, i: t.CInt, e: t.CInt) -> t.CInt: pass
def Render(self: Gadget) -> t.CInt: pass
def GetExtra(self: Gadget) -> t.CInt: pass
class PlainStruct:
x: t.CInt
y: t.CInt
def __init__(self: PlainStruct, ax: t.CInt, ay: t.CInt) -> t.CInt: pass
def Sum(self: PlainStruct) -> t.CInt: pass