Package com.google.dart.engine.internal.scope

Examples of com.google.dart.engine.internal.scope.FunctionScope


        }
        builder.append(" in ");
        builder.append(getDefiningLibrary().getSource().getFullName());
        AnalysisEngine.getInstance().getLogger().logInformation(builder.toString(), new Exception());
      } else {
        nameScope = new FunctionScope(nameScope, constructorElement);
      }
      super.visitConstructorDeclaration(node);
    } finally {
      nameScope = outerScope;
    }
View Full Code Here


        AnalysisEngine.getInstance().getLogger().logInformation(
            "Missing element for top-level function " + node.getName().getName() + " in "
                + getDefiningLibrary().getSource().getFullName(),
            new Exception());
      } else {
        nameScope = new FunctionScope(nameScope, functionElement);
      }
      super.visitFunctionDeclaration(node);
    } finally {
      nameScope = outerScope;
    }
View Full Code Here

          builder.append(getDefiningLibrary().getSource().getFullName());
          AnalysisEngine.getInstance().getLogger().logInformation(
              builder.toString(),
              new Exception());
        } else {
          nameScope = new FunctionScope(nameScope, functionElement);
        }
        super.visitFunctionExpression(node);
      } finally {
        nameScope = outerScope;
      }
View Full Code Here

        AnalysisEngine.getInstance().getLogger().logInformation(
            "Missing element for method " + node.getName().getName() + " in "
                + getDefiningLibrary().getSource().getFullName(),
            new Exception());
      } else {
        nameScope = new FunctionScope(nameScope, methodElement);
      }
      super.visitMethodDeclaration(node);
    } finally {
      nameScope = outerScope;
    }
View Full Code Here

TOP

Related Classes of com.google.dart.engine.internal.scope.FunctionScope

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.