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

Side by Side Diff: tests/corelib/double_parse_test.dart

Issue 1842853002: VM: Fix --no-use-field-guards. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | tests/corelib/num_sign_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) 2014 the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014 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 // VMOptions=--no-use-field-guards
5 // VMOptions=
4 6
5 import "dart:math" show pow; 7 import "dart:math" show pow;
6 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
7 9
8 const whiteSpace = const [ 10 const whiteSpace = const [
9 "", 11 "",
10 "\x09", 12 "\x09",
11 "\x0a", 13 "\x0a",
12 "\x0b", 14 "\x0b",
13 "\x0c", 15 "\x0c",
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 testFail("INFINITY"); 1151 testFail("INFINITY");
1150 testFail("1.#INF"); 1152 testFail("1.#INF");
1151 testFail("inf"); 1153 testFail("inf");
1152 testFail("nan"); 1154 testFail("nan");
1153 testFail("NAN"); 1155 testFail("NAN");
1154 testFail("1.#IND"); 1156 testFail("1.#IND");
1155 testFail("indef"); 1157 testFail("indef");
1156 testFail("qnan"); 1158 testFail("qnan");
1157 testFail("snan"); 1159 testFail("snan");
1158 } 1160 }
OLDNEW
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | tests/corelib/num_sign_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698