| Index: lib/compiler/implementation/native_emitter.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/native_emitter.dart (revision 5968)
|
| +++ lib/compiler/implementation/native_emitter.dart (working copy)
|
| @@ -331,7 +331,7 @@
|
| }
|
| }
|
|
|
| - void assembleCode(StringBuffer other) {
|
| + void assembleCode(StringBuffer targetBuffer) {
|
| if (nativeClasses.isEmpty()) return;
|
|
|
| // Because of native classes, we have to generate some is checks
|
| @@ -351,6 +351,6 @@
|
| 'function() { return $toStringHelperName(this); });\n');
|
|
|
| // Finally, emit the code in the main buffer.
|
| - other.add('(function() {\n$objectProperties$buffer\n})();\n');
|
| + targetBuffer.add('(function() {\n$objectProperties$buffer\n})();\n');
|
| }
|
| }
|
|
|