Package org.apache.flex.compiler.scopes

Examples of org.apache.flex.compiler.scopes.IFileScope


    {
        if (scopes != null)
        {
            for (IASScope iasScope : scopes)
            {
                IFileScope scope = (IFileScope)iasScope;
                if (scope != null)
                {
                    final Collection<IASScope> compilationUnitScopeList = compilationUnitToScopeList.getUnchecked(cu);
                    assert compilationUnitScopeList != null;
                    compilationUnitScopeList.add(scope);
                    ArrayList<IDefinition> externallVisibleDefs = new ArrayList<IDefinition>();
                    scope.collectExternallyVisibleDefinitions(externallVisibleDefs, false);
                    for (IDefinition d : externallVisibleDefs)
                        addDefinition(d);
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.apache.flex.compiler.scopes.IFileScope

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.