Skip to content

Instantly share code, notes, and snippets.

@enthus1ast
Created August 17, 2022 10:03
Direct Rendered:
var
idx = ii
aa = rax.aa
nodes = rax
Direct Ast:
StmtList
VarSection
ExprEqExpr
Ident "idx"
Ident "ii"
ExprEqExpr
Ident "aa"
DotExpr
Ident "rax"
Ident "aa"
ExprEqExpr
Ident "nodes"
Ident "rax"
Indirect Rendered:
var
idx = ii
aa = rax.aa
nodes = rax
Indirect Ast:
StmtList
StmtList
VarSection
IdentDefs
Ident "idx"
Empty
Ident "ii"
IdentDefs
Ident "aa"
Empty
DotExpr
Ident "rax"
Ident "aa"
IdentDefs
Ident "nodes"
Empty
Ident "rax"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment