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

Unified Diff: pkg/compiler/lib/src/js_emitter/model.dart

Issue 809433004: dart2js: is-checks for the new emitter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Improved test. Created 5 years, 12 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/compiler/lib/src/js_emitter/model.dart
diff --git a/pkg/compiler/lib/src/js_emitter/model.dart b/pkg/compiler/lib/src/js_emitter/model.dart
index 2991db3d601e4891aca7c7ebfd9071889bd60257..08c1ad44afe4fd1b71152585811da8c30cb5101c 100644
--- a/pkg/compiler/lib/src/js_emitter/model.dart
+++ b/pkg/compiler/lib/src/js_emitter/model.dart
@@ -165,9 +165,11 @@ class MixinApplication extends Class {
Class _mixinClass;
MixinApplication(String name, Holder holder,
+ List<Method> methods,
+ List<InstanceField> fields,
{bool onlyForRti,
bool isDirectlyInstantiated})
- : super(name, holder, const <Method>[], const <InstanceField>[],
+ : super(name, holder, methods, fields,
onlyForRti: onlyForRti,
isDirectlyInstantiated: isDirectlyInstantiated);

Powered by Google App Engine
This is Rietveld 408576698