Annotation of parser3/tests/259.html, revision 1.1

1.1     ! moko        1: @main[]
        !             2: 
        !             3: $s[]           Empty: $s.CLASS_NAME
        !             4: $x[$s]         Empty copy: $x.CLASS_NAME
        !             5: $y[ $s ]       Empty copy with spaces: $y.CLASS_NAME
        !             6: 
        !             7:                Void: $void.CLASS_NAME
        !             8: $x[$void]      Void copy: $x.CLASS_NAME
        !             9: $y[ $x ]       Void with spaces: $y.CLASS_NAME
        !            10: $z[$void.p]    Void property: $z.CLASS_NAME
        !            11: 
        !            12: Void as string: "$x", once again: "$x"
        !            13: Void as parameter: ^test[$x]
        !            14: Empty as parameter: ^test[$s]
        !            15: Empty parameter: ^test[]
        !            16: 
        !            17: No params: ^test2[]
        !            18: One param: ^test2[one]
        !            19: Two empty params: ^test2[;]
        !            20: 
        !            21: ^test_var[]
        !            22: 
        !            23: @test[a]
        !            24: $a.CLASS_NAME
        !            25: 
        !            26: @test2[a;b]
        !            27: $a.CLASS_NAME / $b.CLASS_NAME
        !            28: 
        !            29: @test_var[a][b]
        !            30: Defined var: $b.CLASS_NAME
        !            31: Undefined var: $bc.CLASS_NAME

E-mail: