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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart

Issue 25675002: Generative constructor factories for native objects (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
index c3dc5a6f479d6dd96a32eb1d253dbade24887667..af8648da3eba86fc0bdf415df85779a4dd728fc5 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
@@ -1454,6 +1454,9 @@ class HInvokeSuper extends HInvokeStatic {
}
class HInvokeConstructorBody extends HInvokeStatic {
+ // The 'inputs' are
+ // [receiver, arg1, ..., argN] or
+ // [interceptor, receiver, arg1, ... argN].
HInvokeConstructorBody(element, inputs)
: super(element, inputs, HType.UNKNOWN);

Powered by Google App Engine
This is Rietveld 408576698