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

Unified Diff: sdk/lib/_internal/compiler/implementation/elements/elements.dart

Issue 14168003: Implement implicit constructors in mixin applications. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 7 years, 8 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: sdk/lib/_internal/compiler/implementation/elements/elements.dart
diff --git a/sdk/lib/_internal/compiler/implementation/elements/elements.dart b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
index c0365963404fb2fbd2c12204f0d4eede2d1816a6..effb75e8da6d7dcca4ccdec1cf41f6f4423264a1 100644
--- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -229,6 +229,7 @@ abstract class Element implements Spannable {
bool get isImplementation;
bool get isDeclaration;
bool get isSynthesized;
+ bool get isForwardingConstructor;
Element get implementation;
Element get declaration;
@@ -246,6 +247,8 @@ abstract class Element implements Spannable {
void setFixedBackendName(String name);
Scope buildScope();
+
+ FunctionElement get targetConstructor;
kasperl 2013/04/25 12:13:12 Add a comment that explains what this is (and that
karlklose 2013/05/03 09:35:45 Done.
}
class Elements {

Powered by Google App Engine
This is Rietveld 408576698