Index: lib/compiler/implementation/code_buffer.dart |
diff --git a/lib/compiler/implementation/code_buffer.dart b/lib/compiler/implementation/code_buffer.dart |
index 1e618c59e4df4322723defe02191348b863f88f3..17605f559d5dc19daf88ec57cb747adf04fce49c 100644 |
--- a/lib/compiler/implementation/code_buffer.dart |
+++ b/lib/compiler/implementation/code_buffer.dart |
@@ -14,8 +14,8 @@ class CodeBuffer implements StringBuffer { |
int get length => buffer.length; |
- bool isEmpty() { |
- return buffer.isEmpty(); |
+ bool get isEmpty { |
+ return buffer.isEmpty; |
} |
/** |