Index: lib/compiler/implementation/ssa/nodes.dart |
diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart |
index 052ecebf77bc7bfb042ab4b94a9ec4061346ba8e..9bc94642c53c4dfde6969db3f43f1302625a7e76 100644 |
--- a/lib/compiler/implementation/ssa/nodes.dart |
+++ b/lib/compiler/implementation/ssa/nodes.dart |
@@ -2613,8 +2613,8 @@ class HBlockFlow { |
* Information about a syntactic-like structure. |
*/ |
interface HBlockInformation { |
- HBasicBlock get start(); |
- HBasicBlock get end(); |
+ HBasicBlock get start; |
+ HBasicBlock get end; |
bool accept(HBlockInformationVisitor visitor); |
} |
@@ -2632,7 +2632,7 @@ interface HStatementInformation extends HBlockInformation { |
*/ |
interface HExpressionInformation extends HBlockInformation { |
bool accept(HExpressionInformationVisitor visitor); |
- HInstruction get conditionExpression(); |
+ HInstruction get conditionExpression; |
} |