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

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

Issue 889573005: dart2js: emit callstubs in new emitter and rename to stubs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/native_emitter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 168a44b33ecd942fad8cec90f0707f4ec8f6c550..5c3400a7fbf4c97fc2ed701e98d9dcc3682c6bf1 100644
--- a/pkg/compiler/lib/src/js_emitter/model.dart
+++ b/pkg/compiler/lib/src/js_emitter/model.dart
@@ -205,7 +205,7 @@ class Class implements FieldContainer {
final List<Method> methods;
final List<Field> fields;
final List<StubMethod> isChecks;
- final List<StubMethod> callStubs;
+ final List<StubMethod> stubs;
floitsch 2015/02/02 15:40:23 Give a description of what these are.
zarah 2015/02/02 16:14:46 Done.
final List<Field> staticFieldsForReflection;
final bool onlyForRti;
final bool isDirectlyInstantiated;
@@ -225,7 +225,7 @@ class Class implements FieldContainer {
this.methods,
this.fields,
this.staticFieldsForReflection,
- this.callStubs,
+ this.stubs,
this.isChecks,
this.functionTypeIndex,
{this.onlyForRti,
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_emitter/native_emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698