1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
--- parse tree ---
[ Comment
, SoftBreak
, EnumListItem (Just 1) [ Text "first" ]
, SoftBreak
, EnumListItem Nothing [ Text "second" ]
, SoftBreak
, EnumListItem (Just 5) [ Text "fifth" ]
, ParBreak
, Code
"typ/layout/enum-06.typ"
( line 6 , column 2 )
(FuncCall
(Ident (Identifier "enum"))
[ NormalArg
(FuncCall
(FieldAccess
(Ident (Identifier "item")) (Ident (Identifier "enum")))
[ NormalArg (Literal (Int 1)) , BlockArg [ Text "First" ] ])
, NormalArg (Block (Content [ Text "Second" ]))
, NormalArg
(FuncCall
(FieldAccess
(Ident (Identifier "item")) (Ident (Identifier "enum")))
[ NormalArg (Literal (Int 5)) , BlockArg [ Text "Fifth" ] ])
])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
enum(children: (text(body: [first]),
text(body: [second]),
text(body: [fifth])),
start: 1),
enum(children: (enum.item(body: text(body: [First]),
number: 1),
text(body: [Second]),
enum.item(body: text(body: [Fifth]),
number: 5))),
parbreak() })
|