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

Side by Side Diff: src/runtime.js

Issue 1143993003: Use shared container to manage imports/exports. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixed test for no-snap Created 5 years, 7 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/regexp.js ('k') | src/string.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 // This files contains runtime support implemented in JavaScript. 5 // This files contains runtime support implemented in JavaScript.
6 6
7 // CAUTION: Some of the functions specified in this file are called 7 // CAUTION: Some of the functions specified in this file are called
8 // directly from compiled code. These are the functions with names in 8 // directly from compiled code. These are the functions with names in
9 // ALL CAPS. The compiled code passes the first argument in 'this'. 9 // ALL CAPS. The compiled code passes the first argument in 'this'.
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 var $toInteger; 78 var $toInteger;
79 var $toLength; 79 var $toLength;
80 var $toName; 80 var $toName;
81 var $toNumber; 81 var $toNumber;
82 var $toObject; 82 var $toObject;
83 var $toPositiveInteger; 83 var $toPositiveInteger;
84 var $toPrimitive; 84 var $toPrimitive;
85 var $toString; 85 var $toString;
86 var $toUint32; 86 var $toUint32;
87 87
88 (function(global, shared, exports) { 88 (function(global, utils) {
89 89
90 %CheckIsBootstrapping(); 90 %CheckIsBootstrapping();
91 91
92 var GlobalArray = global.Array; 92 var GlobalArray = global.Array;
93 var GlobalBoolean = global.Boolean; 93 var GlobalBoolean = global.Boolean;
94 var GlobalString = global.String; 94 var GlobalString = global.String;
95 var GlobalNumber = global.Number; 95 var GlobalNumber = global.Number;
96 96
97 // ---------------------------------------------------------------------------- 97 // ----------------------------------------------------------------------------
98 98
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 $toLength = ToLength; 1032 $toLength = ToLength;
1033 $toName = ToName; 1033 $toName = ToName;
1034 $toNumber = ToNumber; 1034 $toNumber = ToNumber;
1035 $toObject = ToObject; 1035 $toObject = ToObject;
1036 $toPositiveInteger = ToPositiveInteger; 1036 $toPositiveInteger = ToPositiveInteger;
1037 $toPrimitive = ToPrimitive; 1037 $toPrimitive = ToPrimitive;
1038 $toString = ToString; 1038 $toString = ToString;
1039 $toUint32 = ToUint32; 1039 $toUint32 = ToUint32;
1040 1040
1041 }) 1041 })
OLDNEW
« no previous file with comments | « src/regexp.js ('k') | src/string.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698