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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart

Issue 175043004: Version 1.2.0-dev.5.14 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 6 years, 10 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/js_emitter/code_emitter_task.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart (revision 32895)
+++ sdk/lib/_internal/compiler/implementation/js_emitter/code_emitter_task.dart (working copy)
@@ -331,12 +331,13 @@
* string encoding fields, constructor and superclass. Get
* the superclass and the fields in the format
* '[name/]Super;field1,field2'
- * from the null-string property on the descriptor.
+ * from the CLASS_DESCRIPTOR_PROPERTY property on the descriptor.
* The 'name/' is optional and contains the name that should be used
* when printing the runtime type string. It is used, for example, to
* print the runtime type JSInt as 'int'.
*/
- js('var classData = desc[""], supr, name = cls, fields = classData'),
+ js('var classData = desc["${namer.classDescriptorProperty}"], '
+ 'supr, name = cls, fields = classData'),
optional(
backend.hasRetainedMetadata,
js.if_('typeof classData == "object" && '
@@ -828,7 +829,7 @@
backend.generatedCode.keys.where(isStaticFunction);
for (Element element in Elements.sortedByPosition(elements)) {
- ClassBuilder builder = new ClassBuilder();
+ ClassBuilder builder = new ClassBuilder(namer);
containerBuilder.addMember(element, builder);
getElementDecriptor(element).properties.addAll(builder.properties);
}
@@ -1229,8 +1230,7 @@
for (OutputUnit outputUnit in compiler.deferredLoadTask.allOutputUnits) {
ClassBuilder descriptor =
- descriptors.putIfAbsent(outputUnit, ()
- => new ClassBuilder());
+ descriptors.putIfAbsent(outputUnit, () => new ClassBuilder(namer));
if (descriptor.properties.isEmpty) continue;
bool isDeferred =
outputUnit != compiler.deferredLoadTask.mainOutputUnit;
@@ -1348,7 +1348,7 @@
// not see libraries that only have fields.
if (element.isLibrary()) {
LibraryElement library = element;
- ClassBuilder builder = new ClassBuilder();
+ ClassBuilder builder = new ClassBuilder(namer);
if (classEmitter.emitFields(
library, builder, null, emitStatics: true)) {
OutputUnit mainUnit = compiler.deferredLoadTask.mainOutputUnit;
@@ -1546,7 +1546,7 @@
elementDescriptors.putIfAbsent(
element, () => new Map<OutputUnit, ClassBuilder>());
return descriptors.putIfAbsent(outputUnit,
- () => new ClassBuilder());
+ () => new ClassBuilder(namer));
}
ClassBuilder getElementDecriptor(Element element) {

Powered by Google App Engine
This is Rietveld 408576698