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

Side by Side Diff: tests/compiler/dart2js_native/native_class_inheritance3_frog_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "package:expect/expect.dart";
6
7 // Test to see if resolving a hidden native class's method to noSuchMethod 5 // Test to see if resolving a hidden native class's method to noSuchMethod
8 // interferes with subsequent resolving of the method. This might happen if the 6 // interferes with subsequent resolving of the method. This might happen if the
9 // noSuchMethod is cached on Object.prototype. 7 // noSuchMethod is cached on Object.prototype.
10 8
11 class A1 native "*A1" { 9 class A1 native "*A1" {
12 } 10 }
13 11
14 class B1 extends A1 native "*B1" { 12 class B1 extends A1 native "*B1" {
15 } 13 }
16 14
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 expectNoSuchMethod(action, note) { 88 expectNoSuchMethod(action, note) {
91 bool caught = false; 89 bool caught = false;
92 try { 90 try {
93 action(); 91 action();
94 } catch (ex) { 92 } catch (ex) {
95 caught = true; 93 caught = true;
96 Expect.isTrue(ex is NoSuchMethodError, note); 94 Expect.isTrue(ex is NoSuchMethodError, note);
97 } 95 }
98 Expect.isTrue(caught, note); 96 Expect.isTrue(caught, note);
99 } 97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698