packages feed

typst-0.9: test/typ/visualize/shape-aspect-04.out

--- parse tree ---
[ Comment
, SoftBreak
, Code
    "typ/visualize/shape-aspect-04.typ"
    ( line 2 , column 2 )
    (Set
       (Ident (Identifier "page"))
       [ KeyValArg (Identifier "width") (Literal (Numeric 120.0 Pt))
       , KeyValArg (Identifier "height") (Literal (Numeric 40.0 Pt))
       ])
, SoftBreak
, Code
    "typ/visualize/shape-aspect-04.typ"
    ( line 3 , column 2 )
    (FuncCall
       (Ident (Identifier "stack"))
       [ KeyValArg (Identifier "dir") (Ident (Identifier "ltr"))
       , KeyValArg (Identifier "spacing") (Literal (Numeric 2.0 Pt))
       , NormalArg
           (FuncCall
              (Ident (Identifier "circle"))
              [ KeyValArg (Identifier "radius") (Literal (Numeric 5.0 Pt)) ])
       , NormalArg
           (FuncCall
              (Ident (Identifier "circle"))
              [ KeyValArg (Identifier "width") (Literal (Numeric 10.0 Percent))
              ])
       , NormalArg
           (FuncCall
              (Ident (Identifier "circle"))
              [ KeyValArg (Identifier "height") (Literal (Numeric 50.0 Percent))
              ])
       ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
]), 
                 stack(children: (circle(radius: 5.0pt), 
                                  circle(width: 10%), 
                                  circle(height: 50%)), 
                       dir: ltr, 
                       spacing: 2.0pt), 
                 parbreak() })