Package org.apache.flex.compiler.internal.parsing.as

Examples of org.apache.flex.compiler.internal.parsing.as.DeferFunctionBody


        // Only defer function body if the compilation unit is from an actual AS
        // file, and the compilation unit is not "invisible" (currently not
        // open in IDE). "isInvisible" means the compilation unit is invisible
        // to semantic analyzer. It, however, is "visible" to the user in the
        // IDE.
        final DeferFunctionBody deferFunctionBody;
        if(!isInvisible() && specification instanceof FileSpecification)
            deferFunctionBody = DeferFunctionBody.ENABLED;
        else
            deferFunctionBody = DeferFunctionBody.DISABLED;
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.internal.parsing.as.DeferFunctionBody

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.