Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/ssa/nodes.dart (revision 19041) |
| +++ sdk/lib/_internal/compiler/implementation/ssa/nodes.dart (working copy) |
| @@ -1216,6 +1216,8 @@ |
| bool isControlFlow() => true; |
| bool isJsStatement() => isEnabled; |
| bool canThrow() => isEnabled; |
| + // A [HTypeGuard] cannot be moved anywhere in the graph. |
|
kasperl
2013/02/26 17:36:48
I would add a newline before the comment and exten
ngeoffray
2013/02/27 08:06:54
Done.
|
| + bool isPure() => false; |
| accept(HVisitor visitor) => visitor.visitTypeGuard(this); |
| int typeCode() => HInstruction.TYPE_GUARD_TYPECODE; |