You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s/ASTNodeList/Block/g in common.zig, where Block is something along the lines of struct { body: ASTNodeList, scope: *Scope }.
Would allow for per-block locals, types, etc, and provide better error reporting (due to blocks carrying their own srcloc info). Would also allow cleaning up the Cond struct.
Shouldn't be too disruptive of a change.
The text was updated successfully, but these errors were encountered:
s/ASTNodeList/Block/g
incommon.zig
, whereBlock
is something along the lines ofstruct { body: ASTNodeList, scope: *Scope }
.Would allow for per-block locals, types, etc, and provide better error reporting (due to blocks carrying their own srcloc info). Would also allow cleaning up the
Cond
struct.Shouldn't be too disruptive of a change.
The text was updated successfully, but these errors were encountered: