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

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

Issue 1289283004: Initial steps toward adding strong mode to the new task model (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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: pkg/analyzer/lib/src/generated/element_handle.dart
diff --git a/pkg/analyzer/lib/src/generated/element_handle.dart b/pkg/analyzer/lib/src/generated/element_handle.dart
index 49a9edab8a8e89c5e5f1e08ae3093796edc79c6e..05fcf9fcf029bfa2ea057a32f81b981f68be29ff 100644
--- a/pkg/analyzer/lib/src/generated/element_handle.dart
+++ b/pkg/analyzer/lib/src/generated/element_handle.dart
@@ -512,6 +512,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
@@ -1088,6 +1091,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
@@ -1107,6 +1113,7 @@ abstract class VariableElementHandle extends ElementHandle
@override
DartType get type => actualElement.type;
}
+
/**
* TODO(scheglov) invalid implementation
*/

Powered by Google App Engine
This is Rietveld 408576698