Package org.apache.flex.compiler.definitions.IFunctionDefinition

Examples of org.apache.flex.compiler.definitions.IFunctionDefinition.FunctionClassification


        {
            final ASScope scope = classDefinition.getContainedScope();
            IDefinition def = scope.getQualifiedPropertyFromDef(project, classDefinition, baseName, qualifier, false);
            if (def instanceof IFunctionDefinition)
            {
                FunctionClassification classification = ((IFunctionDefinition)def).getFunctionClassification();
                return (classification == FunctionClassification.CLASS_MEMBER) ? false : true;
            }

            return false;
        }
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.definitions.IFunctionDefinition.FunctionClassification

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.