Examples of IVariableNode


Examples of org.apache.flex.compiler.tree.as.IVariableNode

    //----------------------------------

    @Test
    public void testVarDeclaration()
    {
        IVariableNode node = (IVariableNode) getNode("var a;",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var a:*");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testVarDeclaration_withType()
    {
        IVariableNode node = (IVariableNode) getNode("var a:int;",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var a:int");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testVarDeclaration_withTypeAssignedValue()
    {
        IVariableNode node = (IVariableNode) getNode("var a:int = 42;",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var a:int = 42");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testVarDeclaration_withTypeAssignedValueComplex()
    {
        IVariableNode node = (IVariableNode) getNode(
                "var a:Foo = new Foo(42, 'goo');", IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var a:Foo = new Foo(42, 'goo')");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testVarDeclaration_withList()
    {
        IVariableNode node = (IVariableNode) getNode(
                "var a:int = 4, b:int = 11, c:int = 42;", IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var a:int = 4, b:int = 11, c:int = 42");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    //----------------------------------

    @Test
    public void testConstDeclaration()
    {
        IVariableNode node = (IVariableNode) getNode("const a = 42;",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("const a:* = 42");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testConstDeclaration_withType()
    {
        IVariableNode node = (IVariableNode) getNode("const a:int = 42;",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("const a:int = 42");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testConstDeclaration_withList()
    {
        IVariableNode node = (IVariableNode) getNode(
                "const a:int = 4, b:int = 11, c:int = 42;", IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("const a:int = 4, b:int = 11, c:int = 42");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    //----------------------------------

    @Test
    public void testParentheses_1()
    {
        IVariableNode node = (IVariableNode) getNode("var a = (a + b);",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var /** @type {*} */ a = (a + b)");
    }
View Full Code Here

Examples of org.apache.flex.compiler.tree.as.IVariableNode

    }

    @Test
    public void testParentheses_2()
    {
        IVariableNode node = (IVariableNode) getNode("var a = (a + b) - c;",
                IVariableNode.class);
        asBlockWalker.visitVariable(node);
        assertOut("var /** @type {*} */ a = (a + b) - c");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.