OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 (function(global, utils) { | 5 (function(global, utils) { |
6 | 6 |
7 %CheckIsBootstrapping(); | 7 %CheckIsBootstrapping(); |
8 | 8 |
9 // ------------------------------------------------------------------- | 9 // ------------------------------------------------------------------- |
10 // Imports | 10 // Imports |
(...skipping 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1193 | 1193 |
1194 // ------------------------------------------------------------------- | 1194 // ------------------------------------------------------------------- |
1195 // Exports | 1195 // Exports |
1196 | 1196 |
1197 utils.Export(function(to) { | 1197 utils.Export(function(to) { |
1198 to.StringCharAt = StringCharAtJS; | 1198 to.StringCharAt = StringCharAtJS; |
1199 to.StringIndexOf = StringIndexOfJS; | 1199 to.StringIndexOf = StringIndexOfJS; |
1200 to.StringLastIndexOf = StringLastIndexOfJS; | 1200 to.StringLastIndexOf = StringLastIndexOfJS; |
1201 to.StringMatch = StringMatchJS; | 1201 to.StringMatch = StringMatchJS; |
1202 to.StringReplace = StringReplace; | 1202 to.StringReplace = StringReplace; |
| 1203 to.StringSlice = StringSlice; |
1203 to.StringSplit = StringSplitJS; | 1204 to.StringSplit = StringSplitJS; |
1204 to.StringSubstr = StringSubstr; | 1205 to.StringSubstr = StringSubstr; |
1205 to.StringSubstring = StringSubstring; | 1206 to.StringSubstring = StringSubstring; |
1206 }); | 1207 }); |
1207 | 1208 |
1208 }) | 1209 }) |
OLD | NEW |