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

Unified Diff: tests/compiler/dart2js/value_range_test.dart

Issue 236313012: Don't hide interceptors in mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 6 years, 8 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: tests/compiler/dart2js/value_range_test.dart
diff --git a/tests/compiler/dart2js/value_range_test.dart b/tests/compiler/dart2js/value_range_test.dart
index 89dfabc933e2414fcb7e2d98b33eae88a3f4133c..5ea7ee64e08eb5e4bac147bee93398ef31d8c8a7 100644
--- a/tests/compiler/dart2js/value_range_test.dart
+++ b/tests/compiler/dart2js/value_range_test.dart
@@ -328,6 +328,11 @@ const String INTERCEPTORSLIB_WITH_MEMBERS = r'''
class JSDouble extends JSNumber {
}
class JSNull {
+ bool operator==(other) => identical(null, other);
+ get hashCode => throw "JSNull.hashCode not implemented.";
+ String toString() => 'Null';
+ Type get runtimeType => Null;
+ noSuchMethod(x) => super.noSuchMethod(x);
}
class JSBool {
}
« no previous file with comments | « tests/compiler/dart2js/mock_compiler.dart ('k') | tests/compiler/dart2js_extra/reflect_native_types_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698