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

Unified Diff: tests/compiler/dart2js_extra/deferred/deferred_class_test.dart

Issue 247863005: Revert "Insert checks before deferred calls and accesses." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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_extra/deferred/deferred_class_test.dart
diff --git a/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart b/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart
index ff7e328e82486257caca7a635dae71c19581a47a..5df6c73438f3a1ddd156a015bbf363b69ea54711 100644
--- a/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart
+++ b/tests/compiler/dart2js_extra/deferred/deferred_class_test.dart
@@ -11,11 +11,11 @@ import 'dart:async';
const lazy = const DeferredLibrary('deferred_class_library');
-isError(e) => e is Error;
+isNoSuchMethodError(e) => e is NoSuchMethodError;
main() {
var x;
- Expect.throws(() { x = new lib.MyClass(); }, isError);
+ Expect.throws(() { x = new lib.MyClass(); }, isNoSuchMethodError);
Expect.isNull(x);
int counter = 0;
asyncStart();
@@ -38,6 +38,6 @@ main() {
});
Expect.equals(0, counter);
Expect.isNull(x);
- Expect.throws(() { x = new lib.MyClass(); }, isError);
+ Expect.throws(() { x = new lib.MyClass(); }, isNoSuchMethodError);
Expect.isNull(x);
}
« no previous file with comments | « sdk/lib/_internal/lib/js_helper.dart ('k') | tests/compiler/dart2js_extra/deferred/deferred_function_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698