| Index: pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| diff --git a/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart b/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| index d16d5c577b289c305f8aeb9d7dfced27f416d064..94e1a2bfb9a11e76cd783c6bd432c64c8016c687 100644
|
| --- a/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| +++ b/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart
|
| @@ -828,20 +828,6 @@ class OldEmitter implements Emitter {
|
| }
|
| }
|
|
|
| - String get markerFun => 'markerFun';
|
| -
|
| - void emitMarkerFun(CodeOutput output) {
|
| - jsAst.Statement markerFunStmt = js.statement('''
|
| - // This function is used to mark the end of the inheritance chain so that
|
| - // finishAddStubsHelper knows where to stop searching for deferred work.
|
| - // We have to put it at the top level so that we only get one instance of
|
| - // it even if we call parseReflectionData multiple times, e.g., due to
|
| - // deferred loading.
|
| - function #() {}''', markerFun);
|
| - output.addBuffer(jsAst.prettyPrint(markerFunStmt, compiler));
|
| - output.add(N);
|
| - }
|
| -
|
| void emitConvertToFastObjectFunction(CodeOutput output) {
|
| List<jsAst.Statement> debugCode = <jsAst.Statement>[];
|
| if (DEBUG_FAST_OBJECTS) {
|
| @@ -1302,7 +1288,6 @@ class OldEmitter implements Emitter {
|
|
|
| emitConvertToFastObjectFunction(mainOutput);
|
| emitConvertToSlowObjectFunction(mainOutput);
|
| - emitMarkerFun(mainOutput);
|
|
|
| for (String globalObject in Namer.reservedGlobalObjectNames) {
|
| mainOutput.add('$globalObject = convertToFastObject($globalObject)$N');
|
|
|