[Libre-soc-bugs] [Bug 980] Implement C-based Power ISA pseudocode compiler
bugzilla-daemon at libre-soc.org
bugzilla-daemon at libre-soc.org
Thu Jan 4 08:38:32 GMT 2024
https://bugs.libre-soc.org/show_bug.cgi?id=980
--- Comment #49 from Dmitry Selyutin <ghostmansd at gmail.com> ---
That's how ForExpr and WhileExpr look like:
class ForExpr(Dataclass):
target: Node
start: Node
end: Node
body: Scope
class WhileExpr(Dataclass):
test: Node
body: Scope
orelse: Scope
--
You are receiving this mail because:
You are on the CC list for the bug.
More information about the libre-soc-bugs
mailing list