packages feed

typst-0.7: test/typ/compiler/if-01.out

--- parse tree ---
[ Code
    "typ/compiler/if-01.typ"
    ( line 1 , column 2 )
    (Let
       (BasicBind (Just (Identifier "test")))
       (FuncExpr
          [ NormalParam (Identifier "x") , NormalParam (Identifier "y") ]
          (Block
             (CodeBlock
                [ If
                    [ ( Equals (Ident (Identifier "x")) (Ident (Identifier "y"))
                      , Block (Content [ Text "\9989" ])
                      )
                    , ( Literal (Boolean True)
                      , Block
                          (Content
                             [ Text "\10060"
                             , Text "("
                             , Code
                                 "typ/compiler/if-01.typ"
                                 ( line 1 , column 47 )
                                 (FuncCall
                                    (Ident (Identifier "repr"))
                                    [ NormalArg (Ident (Identifier "x")) ])
                             , Space
                             , Text "/"
                             , Text "="
                             , Space
                             , Code
                                 "typ/compiler/if-01.typ"
                                 ( line 1 , column 59 )
                                 (FuncCall
                                    (Ident (Identifier "repr"))
                                    [ NormalArg (Ident (Identifier "y")) ])
                             , Text ")"
                             ])
                      )
                    ]
                ]))))
, SoftBreak
, Comment
, Code
    "typ/compiler/if-01.typ"
    ( line 3 , column 2 )
    (If
       [ ( Block (CodeBlock [ Literal (Boolean True) ])
         , Block (Content [ SoftBreak , Text "One" , Text "." , ParBreak ])
         )
       ])
, ParBreak
, Comment
, Code
    "typ/compiler/if-01.typ"
    ( line 8 , column 2 )
    (If
       [ ( Not (Equals (Block (Content [])) (Literal None))
         , Block (Content [ SoftBreak , Text "Two" , Text "." , ParBreak ])
         )
       ])
, ParBreak
, Comment
, Code
    "typ/compiler/if-01.typ"
    ( line 13 , column 2 )
    (If
       [ ( Equals
             (Plus (Literal (Int 1)) (Literal (Int 1))) (Literal (Int 1))
         , Block (Content [ SoftBreak , Text "Nope" , Text "." , ParBreak ])
         )
       , ( Literal (Boolean True)
         , Block (CodeBlock [ Literal (String "Three.") ])
         )
       ])
, ParBreak
, Comment
, Code
    "typ/compiler/if-01.typ"
    ( line 23 , column 2 )
    (If
       [ ( Literal (Boolean False)
         , Block (Content [ SoftBreak , Text "Bad" , Text "." , ParBreak ])
         )
       , ( Literal (Boolean True)
         , Block
             (CodeBlock
                [ Let
                    (BasicBind (Just (Identifier "point"))) (Literal (String "."))
                , Plus (Literal (String "Four")) (Ident (Identifier "point"))
                ])
         )
       ])
, ParBreak
, Comment
, Code
    "typ/compiler/if-01.typ"
    ( line 31 , column 2 )
    (Block
       (CodeBlock
          [ If
              [ ( Equals
                    (Literal (String "content"))
                    (FuncCall (Ident (Identifier "type")) [ BlockArg [ Text "b" ] ])
                , Block (Content [ Text "Fi" ])
                )
              , ( Literal (Boolean True) , Block (Content [ Text "Nope" ]) )
              ]
          , If
              [ ( Equals (Literal (String "content")) (Ident (Identifier "type"))
                , Block (Content [ Text "Nope" ])
                )
              , ( Literal (Boolean True)
                , Block (Content [ Text "ve" , Text "." ])
                )
              ]
          ]))
, ParBreak
, Code
    "typ/compiler/if-01.typ"
    ( line 36 , column 2 )
    (Let (BasicBind (Just (Identifier "i"))) (Literal (Int 3)))
, SoftBreak
, Code
    "typ/compiler/if-01.typ"
    ( line 37 , column 2 )
    (If
       [ ( LessThan (Ident (Identifier "i")) (Literal (Int 2))
         , Block (Content [ SoftBreak , Text "Five" , Text "." , ParBreak ])
         )
       , ( LessThan (Ident (Identifier "i")) (Literal (Int 4))
         , Block (Content [ SoftBreak , Text "Six" , Text "." , ParBreak ])
         )
       , ( Literal (Boolean True)
         , Block
             (Content [ SoftBreak , Text "Seven" , Text "." , ParBreak ])
         )
       ])
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]), 
                 text(body: [
One.]), 
                 parbreak(), 
                 parbreak(), 
                 text(body: [
Two.]), 
                 parbreak(), 
                 parbreak(), 
                 text(body: [Three.]), 
                 parbreak(), 
                 text(body: [Four.]), 
                 parbreak(), 
                 text(body: [Fi]), 
                 text(body: [ve.]), 
                 parbreak(), 
                 text(body: [
]), 
                 text(body: [
Six.]), 
                 parbreak(), 
                 parbreak() })