| Index: utils/template/codegen.dart
|
| diff --git a/utils/template/codegen.dart b/utils/template/codegen.dart
|
| index 535cbda5130e47353395c50dc80eabf86afc37e8..cc8c0a1cf170bb518f6d6d250e637b1b9266480b 100644
|
| --- a/utils/template/codegen.dart
|
| +++ b/utils/template/codegen.dart
|
| @@ -26,7 +26,7 @@ class CGBlock {
|
| assert(_blockType >= CGBlock.CONSTRUCTOR && _blockType <= CGBlock.WITH);
|
| }
|
|
|
| - bool get anyStatements => !_stmts.isEmpty();
|
| + bool get anyStatements => !_stmts.isEmpty;
|
| bool get isConstructor => _blockType == CGBlock.CONSTRUCTOR;
|
| bool get isEach => _blockType == CGBlock.EACH;
|
| bool get isWith => _blockType == CGBlock.WITH;
|
|
|