Examples of BURMDiagnosticNotAllowedHereProblem


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

     * they can process class definitions.
     * @param c - the class' AST.
     */
    void declareClass(ClassNode c)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(c));
    }
View Full Code Here

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

     * they can process interface definitions.
     * @param in - the interface's AST.
     */
    void declareInterface(InterfaceNode in)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(in));
    }
View Full Code Here

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

     * they can process function definitions.
     * @param f - the function's AST.
     */
    void declareFunction(FunctionNode f)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(f));
    }
View Full Code Here

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

     * they can process packages.
     * @param p - the package's AST.
     */
    void declarePackage(PackageNode p)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(p));
    }
View Full Code Here

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

     * @param var - the variable's AST.
     * @param modifiers - static, const
     */
    void declareVariable(VariableNode var)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(var));
    }
View Full Code Here

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

     * @param var - the variable's AST.
     * @param modifiers - static, const
     */
    void declareBindableVariable(VariableNode var)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(var));
    }
View Full Code Here

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

     * they can process document nodes.
     * @param c - the document's AST.
     */
    void declareMXMLDocument(IMXMLDocumentNode d)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(d));
    }
View Full Code Here

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

     * they can process ad-hoc directives.
     * @param n - the directive's AST.
     */
    void processDirective(IASNode n)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(n));
    }
View Full Code Here

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

     * they can process namespace identifiers.
     * @param ns - the namespace identifier's AST.
     */
    void processNamespaceIdentifierDirective(NamespaceIdentifierNode ns)
    {
        problems.add(new BURMDiagnosticNotAllowedHereProblem(ns));
    }
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.