Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/ssa/optimize.dart |
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart b/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart |
| index 6333b0e147d6325fa4013090c8fdf40c83f7f00c..1c28b5305108ee8e450e49179bc951a63a57aa0c 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/optimize.dart |
| @@ -751,7 +751,7 @@ class SsaDeadCodeEliminator extends HGraphVisitor implements OptimizationPhase { |
| return !instruction.hasSideEffects(types) |
| && instruction.usedBy.isEmpty |
| // A dynamic getter that has no side effect can still throw |
| - // a NoSuchMethodError or a NullPointerException. |
| + // a NoSuchMethodError |
|
ngeoffray
2012/11/16 12:41:30
Keep the '.' at the end.
Lasse Reichstein Nielsen
2012/11/16 15:32:23
Well spotted!
|
| && instruction is !HInvokeDynamicGetter |
| && instruction is !HCheck |
| && instruction is !HTypeGuard |