Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: lib/compiler/implementation/ssa/builder.dart

Issue 9970001: Fix typo in type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698