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

Side by Side Diff: test/mjsunit/string-split.js

Issue 7709024: Replace ToAsciiVector and ToUC16Vector with single function that returns a tagged value. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Require AssertNoAllocation. Fixed bug detected by this requirement. Created 9 years, 4 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 | « src/runtime.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 assertEquals([], "abc".split("", 0)); 109 assertEquals([], "abc".split("", 0));
110 assertEquals([], "abc".split("", numberObj(0))); 110 assertEquals([], "abc".split("", numberObj(0)));
111 assertEquals(["a"], "abc".split("", 1)); 111 assertEquals(["a"], "abc".split("", 1));
112 assertEquals(["a"], "abc".split("", numberObj(1))); 112 assertEquals(["a"], "abc".split("", numberObj(1)));
113 assertEquals(["a", "b"], "abc".split("", 2)); 113 assertEquals(["a", "b"], "abc".split("", 2));
114 assertEquals(["a", "b"], "abc".split("", numberObj(2))); 114 assertEquals(["a", "b"], "abc".split("", numberObj(2)));
115 assertEquals(["a", "b", "c"], "abc".split("", 3)); 115 assertEquals(["a", "b", "c"], "abc".split("", 3));
116 assertEquals(["a", "b", "c"], "abc".split("", numberObj(3))); 116 assertEquals(["a", "b", "c"], "abc".split("", numberObj(3)));
117 assertEquals(["a", "b", "c"], "abc".split("", 4)); 117 assertEquals(["a", "b", "c"], "abc".split("", 4));
118 assertEquals(["a", "b", "c"], "abc".split("", numberObj(4))); 118 assertEquals(["a", "b", "c"], "abc".split("", numberObj(4)));
119
120 var all_ascii_chars = [];
121 for (var i = 0; i < 128; i++) all_ascii_chars[i] = String.fromCharCode(i);
122 var all_ascii_string = all_ascii_chars.join("");
123
124 var split_chars = all_ascii_string.split("");
125 assertEquals(128, split_chars.length);
126 for (var i = 0; i < 128; i++) {
127 assertEquals(1, split_chars[i].length);
128 assertEquals(i, split_chars[i].charCodeAt(0));
129 }
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698