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

Unified Diff: pkg/analyzer2dart/lib/src/modely.dart

Issue 1043723002: Handle NewExpression in SemanticSendVisitor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased+fix modely.dart Created 5 years, 9 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 | « no previous file | pkg/compiler/lib/src/compile_time_constants.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer2dart/lib/src/modely.dart
diff --git a/pkg/analyzer2dart/lib/src/modely.dart b/pkg/analyzer2dart/lib/src/modely.dart
index 493b58da45a0d94815a57436aec4583cb7de788c..19c8b534df39929744a0485bab28b484d4d48906 100644
--- a/pkg/analyzer2dart/lib/src/modely.dart
+++ b/pkg/analyzer2dart/lib/src/modely.dart
@@ -169,9 +169,6 @@ class ElementY extends dart2js.Element {
}
@override
- void setFixedBackendName(String name) => unsupported('setFixedBackendName');
-
- @override
void setNative(String name) => unsupported('setNative');
String toString() => '$kind($name)';
@@ -830,6 +827,10 @@ class ConstructorElementY extends ElementY
@override
bool get isRedirectingFactory => false;
+ // TODO(johnniwinther): Support redirecting generative constructors.
+ @override
+ bool get isRedirectingGenerative => false;
+
@override
bool get isStatic => false;
« no previous file with comments | « no previous file | pkg/compiler/lib/src/compile_time_constants.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698