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

Side by Side Diff: tests/language/instanceof4_test.dart

Issue 18563006: More tests updated to optimize code (Part 2). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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
« no previous file with comments | « tests/language/instance_incr_deopt_test.dart ('k') | tests/language/issue11087_vm_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Dart test program for testing the instanceof operation. 4 // Dart test program for testing the instanceof operation.
5 // Regression test for issue 5216. 5 // Regression test for issue 5216.
6 // VMOptions=--optimization-counter-threshold=10 --no-use-osr
6 7
7 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
8 9
9 class Foo<T> { 10 class Foo<T> {
10 bool isT() => "a string" is T; 11 bool isT() => "a string" is T;
11 bool isNotT() => "a string" is! T; 12 bool isNotT() => "a string" is! T;
12 bool isListT() => [0, 1, 2] is List<T>; 13 bool isListT() => [0, 1, 2] is List<T>;
13 bool isNotListT() => [0, 1, 2] is! List<T>; 14 bool isNotListT() => [0, 1, 2] is! List<T>;
14 bool isAlsoListT() => <int>[0, 1, 2] is List<T>; 15 bool isAlsoListT() => <int>[0, 1, 2] is List<T>;
15 bool isNeitherListT() => <int>[0, 1, 2] is! List<T>; 16 bool isNeitherListT() => <int>[0, 1, 2] is! List<T>;
16 } 17 }
17 18
18 testFooString() { 19 testFooString() {
19 var o = new Foo<String>(); 20 var o = new Foo<String>();
20 Expect.isTrue(o.isT()); 21 Expect.isTrue(o.isT());
21 Expect.isTrue(!o.isNotT()); 22 Expect.isTrue(!o.isNotT());
22 Expect.isTrue(o.isListT()); 23 Expect.isTrue(o.isListT());
23 Expect.isTrue(!o.isNotListT()); 24 Expect.isTrue(!o.isNotListT());
24 Expect.isTrue(!o.isAlsoListT()); 25 Expect.isTrue(!o.isAlsoListT());
25 Expect.isTrue(o.isNeitherListT()); 26 Expect.isTrue(o.isNeitherListT());
26 for (var i = 0; i < 4000; i++) { 27 for (var i = 0; i < 20; i++) {
27 // Make sure methods are optimized. 28 // Make sure methods are optimized.
28 o.isT(); 29 o.isT();
29 o.isNotT(); 30 o.isNotT();
30 o.isListT(); 31 o.isListT();
31 o.isNotListT(); 32 o.isNotListT();
32 o.isAlsoListT(); 33 o.isAlsoListT();
33 o.isNeitherListT(); 34 o.isNeitherListT();
34 } 35 }
35 Expect.isTrue(o.isT()); 36 Expect.isTrue(o.isT());
36 Expect.isTrue(!o.isNotT()); 37 Expect.isTrue(!o.isNotT());
37 Expect.isTrue(o.isListT()); 38 Expect.isTrue(o.isListT());
38 Expect.isTrue(!o.isNotListT()); 39 Expect.isTrue(!o.isNotListT());
39 Expect.isTrue(!o.isAlsoListT()); 40 Expect.isTrue(!o.isAlsoListT());
40 Expect.isTrue(o.isNeitherListT()); 41 Expect.isTrue(o.isNeitherListT());
41 } 42 }
42 43
43 testFooInt() { 44 testFooInt() {
44 var o = new Foo<int>(); 45 var o = new Foo<int>();
45 Expect.isTrue(!o.isT()); 46 Expect.isTrue(!o.isT());
46 Expect.isTrue(o.isNotT()); 47 Expect.isTrue(o.isNotT());
47 Expect.isTrue(o.isListT()); 48 Expect.isTrue(o.isListT());
48 Expect.isTrue(!o.isNotListT()); 49 Expect.isTrue(!o.isNotListT());
49 Expect.isTrue(o.isAlsoListT()); 50 Expect.isTrue(o.isAlsoListT());
50 Expect.isTrue(!o.isNeitherListT()); 51 Expect.isTrue(!o.isNeitherListT());
51 for (var i = 0; i < 4000; i++) { 52 for (var i = 0; i < 20; i++) {
52 // Make sure methods are optimized. 53 // Make sure methods are optimized.
53 o.isT(); 54 o.isT();
54 o.isNotT(); 55 o.isNotT();
55 o.isListT(); 56 o.isListT();
56 o.isNotListT(); 57 o.isNotListT();
57 o.isAlsoListT(); 58 o.isAlsoListT();
58 o.isNeitherListT(); 59 o.isNeitherListT();
59 } 60 }
60 Expect.isTrue(!o.isT()); 61 Expect.isTrue(!o.isT());
61 Expect.isTrue(o.isNotT()); 62 Expect.isTrue(o.isNotT());
62 Expect.isTrue(o.isListT()); 63 Expect.isTrue(o.isListT());
63 Expect.isTrue(!o.isNotListT()); 64 Expect.isTrue(!o.isNotListT());
64 Expect.isTrue(o.isAlsoListT()); 65 Expect.isTrue(o.isAlsoListT());
65 Expect.isTrue(!o.isNeitherListT()); 66 Expect.isTrue(!o.isNeitherListT());
66 } 67 }
67 68
68 main() { 69 main() {
69 testFooString(); 70 testFooString();
70 testFooInt(); 71 testFooInt();
71 } 72 }
OLDNEW
« no previous file with comments | « tests/language/instance_incr_deopt_test.dart ('k') | tests/language/issue11087_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698