Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(260)

Unified Diff: pkg/analyzer/lib/src/generated/index.dart

Issue 285423002: New analyzer snapshot (with CaughtException). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Replace AnalysisException with CaughtException Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/analyzer/lib/src/generated/error.dart ('k') | pkg/analyzer/lib/src/generated/java_engine.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/index.dart
diff --git a/pkg/analyzer/lib/src/generated/index.dart b/pkg/analyzer/lib/src/generated/index.dart
index ecd8581140b20c9f3d3c89838c3bca11ffc3366b..ae07ab521a3db80d8c946a01e3d86e750d697d6c 100644
--- a/pkg/analyzer/lib/src/generated/index.dart
+++ b/pkg/analyzer/lib/src/generated/index.dart
@@ -440,14 +440,14 @@ abstract class IndexConstants {
* referenced at a specific location (the right operand). This is used for qualified resolved
* references to methods and fields.
*/
- static final Relationship IS_REFERENCED_BY_QUALIFIED_RESOLVED = Relationship.getRelationship("is-referenced-by_qualified-resolved");
+ static final Relationship IS_REFERENCED_BY_QUALIFIED_RESOLVED = Relationship.getRelationship("is-referenced-by-qualified-resolved");
/**
* The relationship used to indicate that an [NameElementImpl] (the left-operand) is
* referenced at a specific location (the right operand). This is used for qualified unresolved
* references to methods and fields.
*/
- static final Relationship IS_REFERENCED_BY_QUALIFIED_UNRESOLVED = Relationship.getRelationship("is-referenced-by_qualified-unresolved");
+ static final Relationship IS_REFERENCED_BY_QUALIFIED_UNRESOLVED = Relationship.getRelationship("is-referenced-by-qualified-unresolved");
/**
* The relationship used to indicate that an element (the left-operand) is referenced at a
@@ -480,6 +480,54 @@ abstract class IndexConstants {
static final Relationship IS_INVOKED_BY_UNQUALIFIED = Relationship.getRelationship("is-invoked-by-unqualified");
/**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is invoked
+ * at a specific location (the right operand). This is used for resolved invocations.
+ */
+ static final Relationship NAME_IS_INVOKED_BY_RESOLVED = Relationship.getRelationship("name-is-invoked-by-resolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is read at
+ * a specific location (the right operand).
+ */
+ static final Relationship NAME_IS_READ_BY_RESOLVED = Relationship.getRelationship("name-is-read-by-resolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is both
+ * read and written at a specific location (the right operand).
+ */
+ static final Relationship NAME_IS_READ_WRITTEN_BY_RESOLVED = Relationship.getRelationship("name-is-read-written-by-resolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is written
+ * at a specific location (the right operand).
+ */
+ static final Relationship NAME_IS_WRITTEN_BY_RESOLVED = Relationship.getRelationship("name-is-written-by-resolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is invoked
+ * at a specific location (the right operand). This is used for unresolved invocations.
+ */
+ static final Relationship NAME_IS_INVOKED_BY_UNRESOLVED = Relationship.getRelationship("name-is-invoked-by-unresolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is read at
+ * a specific location (the right operand).
+ */
+ static final Relationship NAME_IS_READ_BY_UNRESOLVED = Relationship.getRelationship("name-is-read-by-unresolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is both
+ * read and written at a specific location (the right operand).
+ */
+ static final Relationship NAME_IS_READ_WRITTEN_BY_UNRESOLVED = Relationship.getRelationship("name-is-read-written-by-unresolved");
+
+ /**
+ * The relationship used to indicate that an [NameElementImpl] (the left-operand) is written
+ * at a specific location (the right operand).
+ */
+ static final Relationship NAME_IS_WRITTEN_BY_UNRESOLVED = Relationship.getRelationship("name-is-written-by-unresolved");
+
+ /**
* Reference to some [AngularElement].
*/
static final Relationship ANGULAR_REFERENCE = Relationship.getRelationship("angular-reference");
@@ -1010,10 +1058,17 @@ class IndexContributor extends GeneralizingAstVisitor<Object> {
}
recordRelationship(element, relationship, location);
}
- if (element is FunctionElement) {
+ if (element is FunctionElement || element is VariableElement) {
Location location = _createLocationFromNode(name);
recordRelationship(element, IndexConstants.IS_INVOKED_BY, location);
}
+ // name invocation
+ {
+ Element nameElement = new NameElementImpl(name.name);
+ Location location = _createLocationFromNode(name);
+ Relationship kind = element != null ? IndexConstants.NAME_IS_INVOKED_BY_RESOLVED : IndexConstants.NAME_IS_INVOKED_BY_UNRESOLVED;
+ _store.recordRelationship(nameElement, kind, location);
+ }
_recordImportElementReferenceWithoutPrefix(name);
return super.visitMethodInvocation(node);
}
@@ -1062,6 +1117,21 @@ class IndexContributor extends GeneralizingAstVisitor<Object> {
if (_isAlreadyHandledName(node)) {
return null;
}
+ // record name read/write
+ {
+ bool inGetterContext = node.inGetterContext();
+ bool inSetterContext = node.inSetterContext();
+ if (inGetterContext && inSetterContext) {
+ Relationship kind = element != null ? IndexConstants.NAME_IS_READ_WRITTEN_BY_RESOLVED : IndexConstants.NAME_IS_READ_WRITTEN_BY_UNRESOLVED;
+ _store.recordRelationship(nameElement, kind, location);
+ } else if (inGetterContext) {
+ Relationship kind = element != null ? IndexConstants.NAME_IS_READ_BY_RESOLVED : IndexConstants.NAME_IS_READ_BY_UNRESOLVED;
+ _store.recordRelationship(nameElement, kind, location);
+ } else if (inSetterContext) {
+ Relationship kind = element != null ? IndexConstants.NAME_IS_WRITTEN_BY_RESOLVED : IndexConstants.NAME_IS_WRITTEN_BY_UNRESOLVED;
+ _store.recordRelationship(nameElement, kind, location);
+ }
+ }
// record specific relations
if (element is ClassElement || element is FunctionElement || element is FunctionTypeAliasElement || element is LabelElement || element is TypeParameterElement) {
recordRelationship(element, IndexConstants.IS_REFERENCED_BY, location);
« no previous file with comments | « pkg/analyzer/lib/src/generated/error.dart ('k') | pkg/analyzer/lib/src/generated/java_engine.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698