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

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

Issue 10660007: Don't transform interceptors into dynamic invocations for null. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/optimize.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/nodes.dart
diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
index ba7eaf346de62395eb3a9238079700cede633aed..f657bfcc4bbc28b8987838ea9aa22b6a44f0942a 100644
--- a/lib/compiler/implementation/ssa/nodes.dart
+++ b/lib/compiler/implementation/ssa/nodes.dart
@@ -770,6 +770,7 @@ class HInstruction implements Hashable {
bool isIndexablePrimitive() => propagatedType.isIndexablePrimitive();
bool isPrimitive() => propagatedType.isPrimitive();
bool canBePrimitive() => propagatedType.canBePrimitive();
+ bool canBeNull() => propagatedType.canBeNull();
/**
* This is the type the instruction is guaranteed to have. It does not
« no previous file with comments | « no previous file | lib/compiler/implementation/ssa/optimize.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698