Package org.apache.flex.compiler.problems

Examples of org.apache.flex.compiler.problems.ConstructorIsGetterSetterProblem


                }
            }

            // Is it a getter or setter that appears to be the constructor?
            if( func instanceof IAccessorDefinition )
                problems.add(new ConstructorIsGetterSetterProblem(node.getNameExpressionNode()));
        }
        else if( !func.isStatic() )
        {
            // We have to find the (potentially) overriden function whether we are an override or
            // not/
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.problems.ConstructorIsGetterSetterProblem

Copyright © 2018 www.massapicom. 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.