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

Side by Side Diff: src/symbol.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/string-iterator.js ('k') | src/templates.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 // Expects following symbols to be set in the bootstrapper during genesis: 5 // Expects following symbols to be set in the bootstrapper during genesis:
6 // - symbolHasInstance 6 // - symbolHasInstance
7 // - symbolIsConcatSpreadable 7 // - symbolIsConcatSpreadable
8 // - symbolIsRegExp 8 // - symbolIsRegExp
9 // - symbolIterator 9 // - symbolIterator
10 // - symbolToStringTag 10 // - symbolToStringTag
11 // - symbolUnscopables 11 // - symbolUnscopables
12 12
13 var $symbolToString; 13 var $symbolToString;
14 14
15 (function(global, shared, exports) { 15 (function(global, utils) {
16 16
17 "use strict"; 17 "use strict";
18 18
19 %CheckIsBootstrapping(); 19 %CheckIsBootstrapping();
20 20
21 var GlobalObject = global.Object; 21 var GlobalObject = global.Object;
22 var GlobalSymbol = global.Symbol; 22 var GlobalSymbol = global.Symbol;
23 23
24 // ------------------------------------------------------------------- 24 // -------------------------------------------------------------------
25 25
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 "valueOf", SymbolValueOf 108 "valueOf", SymbolValueOf
109 ]); 109 ]);
110 110
111 $installFunctions(GlobalObject, DONT_ENUM, [ 111 $installFunctions(GlobalObject, DONT_ENUM, [
112 "getOwnPropertySymbols", ObjectGetOwnPropertySymbols 112 "getOwnPropertySymbols", ObjectGetOwnPropertySymbols
113 ]); 113 ]);
114 114
115 $symbolToString = SymbolToString; 115 $symbolToString = SymbolToString;
116 116
117 }) 117 })
OLDNEW
« no previous file with comments | « src/string-iterator.js ('k') | src/templates.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698