typst-0.9: test/typ/layout/repeat-02.out
--- parse tree ---
[ Comment
, SoftBreak
, Text "A"
, Space
, Code
"typ/layout/repeat-02.typ"
( line 2 , column 4 )
(FuncCall
(Ident (Identifier "box"))
[ KeyValArg (Identifier "width") (Literal (Numeric 1.0 Fr))
, NormalArg
(FuncCall (Ident (Identifier "repeat")) [ BlockArg [] ])
])
, Space
, Text "B"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
A ]),
box(body: repeat(body: { }),
width: 1.0fr),
text(body: [ B]),
parbreak() })