| Index: sdk/lib/_internal/compiler/implementation/code_buffer.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/code_buffer.dart b/sdk/lib/_internal/compiler/implementation/code_buffer.dart
|
| index 1d58b9b6c3b7bce37dc6c8cf7e23e36192eaab57..4934ea3c7d6a9bbc75a35781b6f10c3ce00029d6 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/code_buffer.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/code_buffer.dart
|
| @@ -20,6 +20,8 @@ class CodeBuffer implements StringBuffer {
|
| return buffer.isEmpty;
|
| }
|
|
|
| + bool get isNotEmpty => !isEmpty;
|
| +
|
| CodeBuffer add(var object) {
|
| write(object);
|
| return this;
|
|
|