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

Unified Diff: runtime/vm/object.cc

Issue 291923004: Fix issue 18865. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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 | tests/language/regress_18865_test.dart » ('j') | tests/language/regress_18865_test.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
===================================================================
--- runtime/vm/object.cc (revision 36305)
+++ runtime/vm/object.cc (working copy)
@@ -13941,11 +13941,11 @@
isolate, other_type.arguments());
if (type_args.IsNull()) {
// Ignore from_index.
- return other_type_args.IsRaw(0, num_type_params);
+ return other_type_args.IsRaw(0, num_type_args);
}
if (other_type_args.IsNull()) {
// Ignore from_index.
- return type_args.IsRaw(0, num_type_params);
+ return type_args.IsRaw(0, num_type_args);
}
if (!type_args.IsSubvectorEquivalent(other_type_args,
from_index,
« no previous file with comments | « no previous file | tests/language/regress_18865_test.dart » ('j') | tests/language/regress_18865_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698