| Index: dart/lib/compiler/implementation/code_buffer.dart
|
| diff --git a/dart/lib/compiler/implementation/code_buffer.dart b/dart/lib/compiler/implementation/code_buffer.dart
|
| index 47cca0361fbc85ad2a2873329329c91c4f24fb84..3c3053e429942e4cfa4f7018efbf1998d6576e7b 100644
|
| --- a/dart/lib/compiler/implementation/code_buffer.dart
|
| +++ b/dart/lib/compiler/implementation/code_buffer.dart
|
| @@ -11,7 +11,7 @@ class CodeBuffer implements StringBuffer {
|
| : buffer = new StringBuffer(),
|
| sourceLocations = new List<SourceLocation>();
|
|
|
| - int get length() => buffer.length;
|
| + int get length => buffer.length;
|
|
|
| bool isEmpty() {
|
| return buffer.isEmpty();
|
|
|