packages feed

typst-0.9: test/typ/compiler/construct-00.out

--- parse tree ---
[ Comment
, SoftBreak
, Comment
, SoftBreak
, Code
    "typ/compiler/construct-00.typ"
    ( line 3 , column 2 )
    (Set
       (Ident (Identifier "par"))
       [ KeyValArg (Identifier "leading") (Literal (Numeric 2.0 Pt)) ])
, SoftBreak
, Code
    "typ/compiler/construct-00.typ"
    ( line 4 , column 2 )
    (FuncCall
       (Ident (Identifier "list"))
       [ KeyValArg (Identifier "body-indent") (Literal (Numeric 20.0 Pt))
       , NormalArg (Block (Content [ Text "First" ]))
       , NormalArg
           (FuncCall
              (Ident (Identifier "list"))
              [ BlockArg [ Text "A" ] , BlockArg [ Text "B" ] ])
       ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
]), 
                 text(body: [
]), 
                 list(body-indent: 20.0pt, 
                      children: (text(body: [First]), 
                                 list(children: (text(body: [A]), 
                                                 text(body: [B]))))), 
                 parbreak() })