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

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

Issue 677013002: Make dart2js String.split match the VM version. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also add documentation to String.split. Created 6 years, 2 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import "package:expect/expect.dart";
6
7 main() {
8 var list = "a b c".split(new RegExp(" "));
9 Expect.equals(3, list.length);
10 Expect.equals("a", list[0]);
11 Expect.equals("b", list[1]);
12 Expect.equals("c", list[2]);
13
14 list = "adbdc".split(new RegExp("[dz]"));
15 Expect.equals(3, list.length);
16 Expect.equals("a", list[0]);
17 Expect.equals("b", list[1]);
18 Expect.equals("c", list[2]);
19
20 list = "addbddc".split(new RegExp("dd"));
21 Expect.equals(3, list.length);
22 Expect.equals("a", list[0]);
23 Expect.equals("b", list[1]);
24 Expect.equals("c", list[2]);
25
26 list = "abc".split(new RegExp(r"b$"));
27 Expect.equals(1, list.length);
28 Expect.equals("abc", list[0]);
29
30 list = "abc".split(new RegExp(""));
31 Expect.equals(3, list.length);
32 Expect.equals("a", list[0]);
33 Expect.equals("b", list[1]);
34 Expect.equals("c", list[2]);
35
36 list = " ".split(new RegExp("[ ]"));
37 Expect.equals(4, list.length);
38 Expect.equals("", list[0]);
39 Expect.equals("", list[1]);
40 Expect.equals("", list[2]);
41 Expect.equals("", list[3]);
42
43 list = "aaa".split(new RegExp(r"a$"));
44 Expect.equals(2, list.length);
45 Expect.equals("aa", list[0]);
46 Expect.equals("", list[1]);
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698