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

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: Remove debug code and rebase 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 94d8a1c04753b45e0904230ad8f649a270a095d5..d9332cbb19ebc14b9449cd5591e2378da3e146ff 100644
--- a/sdk/lib/_internal/compiler/implementation/elements/elements.dart
+++ b/sdk/lib/_internal/compiler/implementation/elements/elements.dart
@@ -651,6 +651,10 @@ abstract class VariableListElement extends Element {
void set type(DartType value);
}
+abstract class ForwardingConstructorElement extends FunctionElement {
ahe 2013/04/15 13:36:46 Please document this class.
karlklose 2013/04/25 11:25:53 Obsolete, removed the class.
+ FunctionElement get superConstructor;
+}
+
/**
* A synthetic element which holds a getter and/or a setter.
*

Powered by Google App Engine
This is Rietveld 408576698