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

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

Issue 10579014: Postpone the argument type optimizations until the types are stable. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix comment. Created 8 years, 6 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
Index: lib/compiler/implementation/ssa/nodes.dart
diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
index df6816a2b52aa782edcdf66e488fbe42205dfb4d..90864821daf3ca4536c4c92c560ffa975d8d72f3 100644
--- a/lib/compiler/implementation/ssa/nodes.dart
+++ b/lib/compiler/implementation/ssa/nodes.dart
@@ -935,12 +935,12 @@ class HInstruction implements Hashable {
bool isConstantBoolean() => false;
bool isConstantNull() => false;
bool isConstantNumber() => false;
+ bool isConstantInteger() => false;
bool isConstantString() => false;
bool isConstantList() => false;
bool isConstantMap() => false;
bool isConstantFalse() => false;
bool isConstantTrue() => false;
- bool isConstantInteger() => false;
bool isValid() {
HValidator validator = new HValidator();

Powered by Google App Engine
This is Rietveld 408576698