Examples of WithScope


Examples of org.apache.flex.compiler.internal.scopes.WithScope

    protected void analyze(EnumSet<PostProcessStep> set, ASScope scope, Collection<ICompilerProblem> problems)
    {
        if (set.contains(PostProcessStep.POPULATE_SCOPE) ||
            set.contains(PostProcessStep.RECONNECT_DEFINITIONS))
        {
            withScope = new WithScope(scope);
            withScope.setContainingScope(scope);
            // We know this is always a ScopedBlockNode because we created it above in initBlockNode
            ((ScopedBlockNode)contentsNode).setScope(withScope);
        }
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.