Package org.apache.flex.compiler.problems

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


        }
       
        if( initializer == null )
        {
            // Can't declare a namespace if we don't know what its initial value is
            getProblems().add( new InvalidNamespaceInitializerProblem(iNode) );
            return null;
        }

        currentScope.makeNamespace(ns_name, initializer);
        if ( ns_name.isLocal() )
View Full Code Here

TOP

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

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.