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

Side by Side Diff: src/proxy.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/promise.js ('k') | src/regexp.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 var $proxyDelegateCallAndConstruct; 5 var $proxyDelegateCallAndConstruct;
6 var $proxyDerivedGetTrap; 6 var $proxyDerivedGetTrap;
7 var $proxyDerivedHasTrap; 7 var $proxyDerivedHasTrap;
8 var $proxyDerivedHasOwnTrap; 8 var $proxyDerivedHasOwnTrap;
9 var $proxyDerivedKeysTrap; 9 var $proxyDerivedKeysTrap;
10 var $proxyDerivedSetTrap; 10 var $proxyDerivedSetTrap;
11 var $proxyEnumerate; 11 var $proxyEnumerate;
12 12
13 (function(global, shared, exports) { 13 (function(global, utils) {
14 14
15 "use strict"; 15 "use strict";
16 16
17 %CheckIsBootstrapping(); 17 %CheckIsBootstrapping();
18 18
19 var GlobalFunction = global.Function; 19 var GlobalFunction = global.Function;
20 var GlobalObject = global.Object; 20 var GlobalObject = global.Object;
21 21
22 // ------------------------------------------------------------------- 22 // -------------------------------------------------------------------
23 23
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 $proxyDelegateCallAndConstruct = DelegateCallAndConstruct; 193 $proxyDelegateCallAndConstruct = DelegateCallAndConstruct;
194 $proxyDerivedGetTrap = DerivedGetTrap; 194 $proxyDerivedGetTrap = DerivedGetTrap;
195 $proxyDerivedHasTrap = DerivedHasTrap; 195 $proxyDerivedHasTrap = DerivedHasTrap;
196 $proxyDerivedHasOwnTrap = DerivedHasOwnTrap; 196 $proxyDerivedHasOwnTrap = DerivedHasOwnTrap;
197 $proxyDerivedKeysTrap = DerivedKeysTrap; 197 $proxyDerivedKeysTrap = DerivedKeysTrap;
198 $proxyDerivedSetTrap = DerivedSetTrap; 198 $proxyDerivedSetTrap = DerivedSetTrap;
199 $proxyEnumerate = ProxyEnumerate; 199 $proxyEnumerate = ProxyEnumerate;
200 200
201 }) 201 })
OLDNEW
« no previous file with comments | « src/promise.js ('k') | src/regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698