| Index: dart/lib/compiler/implementation/js/printer.dart
|
| diff --git a/dart/lib/compiler/implementation/js/printer.dart b/dart/lib/compiler/implementation/js/printer.dart
|
| index f327b0b9fa741e84068838f7bd05964d5dae7384..287961218b1ac7c71132320e063675f6286a0935 100644
|
| --- a/dart/lib/compiler/implementation/js/printer.dart
|
| +++ b/dart/lib/compiler/implementation/js/printer.dart
|
| @@ -25,7 +25,7 @@ class Printer implements NodeVisitor {
|
| }
|
|
|
| String lastAddedString = null;
|
| - int get lastCharCode() {
|
| + int get lastCharCode {
|
| if (lastAddedString == null) return 0;
|
| assert(lastAddedString.length != "");
|
| return lastAddedString.charCodeAt(lastAddedString.length - 1);
|
|
|