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

Unified Diff: runtime/vm/flow_graph_builder.cc

Issue 22819005: Make Null a public class of dart:core. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase on dart2js's putback Created 7 years, 4 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: runtime/vm/flow_graph_builder.cc
diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
index e818aa2b1e9e5a553523ae2b07d102e33b3c7432..cfad845edad94b069e93aa03636cf1f9d00a4a20 100644
--- a/runtime/vm/flow_graph_builder.cc
+++ b/runtime/vm/flow_graph_builder.cc
@@ -1223,7 +1223,6 @@ void ValueGraphVisitor::BuildTypeTest(ComparisonNode* node) {
type.IsInstantiated()) {
const Instance& literal_value = node->left()->AsLiteralNode()->literal();
ConstantInstr* result = NULL;
-
regis 2013/08/15 17:27:26 Any particular reason to remove these 2 blank line
rmacnak 2013/08/15 17:56:04 No reason, just an artifact of merging with dart2j
Error& malformed_error = Error::Handle();
if (literal_value.IsInstanceOf(type,
TypeArguments::Handle(),
@@ -1235,7 +1234,6 @@ void ValueGraphVisitor::BuildTypeTest(ComparisonNode* node) {
Bool::True() : Bool::False());
}
ASSERT(malformed_error.IsNull());
-
ReturnDefinition(result);
return;
}
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/object.cc » ('j') | runtime/vm/object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698