| Index: lib/compiler/implementation/ssa/builder.dart
|
| diff --git a/lib/compiler/implementation/ssa/builder.dart b/lib/compiler/implementation/ssa/builder.dart
|
| index 16a4fdbaf181df350057d11fa3047aa2c948c99f..0f48c2db6630722f804d14577f59830eeb5c0b69 100644
|
| --- a/lib/compiler/implementation/ssa/builder.dart
|
| +++ b/lib/compiler/implementation/ssa/builder.dart
|
| @@ -932,7 +932,7 @@ class SsaBuilder implements Visitor {
|
| }
|
| constructorArguments.add(value);
|
| });
|
| -
|
| +
|
| HForeignNew newObject = new HForeignNew(classElement, constructorArguments);
|
| add(newObject);
|
| // Generate calls to the constructor bodies.
|
| @@ -1306,7 +1306,7 @@ class SsaBuilder implements Visitor {
|
| visit(node.condition);
|
| assert(!isAborted());
|
| HInstruction conditionInstruction = popBoolified();
|
| - HBasicBLock conditionEndBlock =
|
| + HBasicBlock conditionEndBlock =
|
| close(new HLoopBranch(conditionInstruction, HLoopBranch.DO_WHILE_LOOP));
|
|
|
| conditionEndBlock.addSuccessor(loopEntryBlock); // The back-edge.
|
|
|