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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_backend/emitter_no_eval.dart

Issue 11414255: dart2js: Dot-separated field-and-super descriptor string in class definitions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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/js_backend/emitter_no_eval.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/emitter_no_eval.dart b/sdk/lib/_internal/compiler/implementation/js_backend/emitter_no_eval.dart
index 986b586d6fa10e662bcc817755af1a5dd6056d0b..9e31cfa19adc2087ca7f92e97c7ecad5b308d1bd 100644
--- a/sdk/lib/_internal/compiler/implementation/js_backend/emitter_no_eval.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_backend/emitter_no_eval.dart
@@ -134,7 +134,9 @@ $classesCollector.$mangledName = {'': function $mangledName(self, target) {
void emitClassFields(ClassElement classElement,
CodeBuffer buffer,
- bool emitEndingComma) {
+ { String superClass: "",
+ bool isNative: false,
+ bool emitEndingComma: true}) {
if (emitEndingComma) buffer.add(', ');
}

Powered by Google App Engine
This is Rietveld 408576698