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

Unified Diff: packages/analyzer/lib/src/generated/element_handle.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years, 2 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
Index: packages/analyzer/lib/src/generated/element_handle.dart
diff --git a/analyzer/lib/src/generated/element_handle.dart b/packages/analyzer/lib/src/generated/element_handle.dart
similarity index 99%
rename from analyzer/lib/src/generated/element_handle.dart
rename to packages/analyzer/lib/src/generated/element_handle.dart
index e5921d6b477189a7f712928aed5fcd0cbf9f69cc..338a279351168e81c3191b9847a96f85346256c1 100644
--- a/analyzer/lib/src/generated/element_handle.dart
+++ b/packages/analyzer/lib/src/generated/element_handle.dart
@@ -2,9 +2,6 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// This code was auto-generated, is not intended to be edited, and is subject to
-// significant change. Please see the README file for more information.
-
library engine.element_handle;
import 'ast.dart';
@@ -340,6 +337,9 @@ abstract class ElementHandle implements Element {
String get displayName => actualElement.displayName;
@override
+ SourceRange get docRange => actualElement.docRange;
+
+ @override
Element get enclosingElement => actualElement.enclosingElement;
@override
@@ -374,6 +374,9 @@ abstract class ElementHandle implements Element {
String get name => actualElement.name;
@override
+ int get nameLength => actualElement.nameLength;
+
+ @override
int get nameOffset => actualElement.nameOffset;
@deprecated
@@ -515,6 +518,9 @@ abstract class ExecutableElementHandle extends ElementHandle
List<FunctionElement> get functions => actualElement.functions;
@override
+ bool get hasImplicitReturnType => actualElement.hasImplicitReturnType;
+
+ @override
bool get isAbstract => actualElement.isAbstract;
@override
@@ -610,9 +616,6 @@ class FieldElementHandle extends PropertyInducingElementHandle
bool get isEnumConstant => actualElement.isEnumConstant;
@override
- bool get isStatic => actualElement.isStatic;
-
- @override
ElementKind get kind => ElementKind.FIELD;
@override
@@ -895,6 +898,7 @@ class MethodElementHandle extends ExecutableElementHandle
* `ParameterElement`.
*/
class ParameterElementHandle extends VariableElementHandle
+ with ParameterElementMixin
implements ParameterElement {
/**
* Initialize a newly created element handle to represent the given element.
@@ -1020,9 +1024,6 @@ abstract class PropertyInducingElementHandle extends VariableElementHandle
PropertyAccessorElement get getter => actualElement.getter;
@override
- bool get isStatic => actualElement.isStatic;
-
- @override
DartType get propagatedType => actualElement.propagatedType;
@override
@@ -1091,6 +1092,9 @@ abstract class VariableElementHandle extends ElementHandle
VariableElement get actualElement => super.actualElement as VariableElement;
@override
+ bool get hasImplicitType => actualElement.hasImplicitType;
+
+ @override
FunctionElement get initializer => actualElement.initializer;
@override
@@ -1108,8 +1112,12 @@ abstract class VariableElementHandle extends ElementHandle
actualElement.isPotentiallyMutatedInScope;
@override
+ bool get isStatic => actualElement.isStatic;
+
+ @override
DartType get type => actualElement.type;
}
+
/**
* TODO(scheglov) invalid implementation
*/
« no previous file with comments | « packages/analyzer/lib/src/generated/element.dart ('k') | packages/analyzer/lib/src/generated/element_resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698