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

Side by Side Diff: src/string.js

Issue 1282793002: Debugger: load debugger builtins as normal native JS. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: use InstallFunctions and InstallConstants Created 5 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
« no previous file with comments | « src/prologue.js ('k') | test/mjsunit/debug-mirror-cache.js » ('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 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
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 })
OLDNEW
« no previous file with comments | « src/prologue.js ('k') | test/mjsunit/debug-mirror-cache.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698