Examples of MissingBuiltinProblem


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

        {
            top_level_processor.traverse(root_node);
        }
        catch (MissingBuiltinException e)
        {
            global_scope.addProblem(new MissingBuiltinProblem(root_node, e.getBuiltinName()));
            fatal_error_encountered = true;
        }
        catch (CodegenInterruptedException e)
        {
            //  Unwrap the InterruptedException and rethrow it.
View Full Code Here

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

            if (getBuiltinType(builtinType) == null)
            {
                if (fatalProblems == null)
                    fatalProblems = new ArrayList<ICompilerProblem>();

                fatalProblems.add(new MissingBuiltinProblem(builtinType.getName()));
                break;
            }
        }
        return fatalProblems == null ? Collections.<ICompilerProblem>emptyList() : fatalProblems;
    }
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.