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

Side by Side Diff: src/templates.js

Issue 1132513003: Call builtin code wrapped in functions from the bootstrapper. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix extra natives 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/symbol.js ('k') | src/third_party/fdlibm/fdlibm.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 // Called from a desugaring in the parser. 5 // Called from a desugaring in the parser.
6 6
7 var $getTemplateCallSite; 7 var $getTemplateCallSite;
8 8
9 (function() { 9 (function(global, shared, exports) {
10 10
11 "use strict"; 11 "use strict";
12 12
13 %CheckIsBootstrapping(); 13 %CheckIsBootstrapping();
14 14
15 var callSiteCache = new global.Map; 15 var callSiteCache = new global.Map;
16 var mapGetFn = global.Map.prototype.get; 16 var mapGetFn = global.Map.prototype.get;
17 var mapSetFn = global.Map.prototype.set; 17 var mapSetFn = global.Map.prototype.set;
18 18
19 19
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 var cached = GetCachedCallSite(rawStrings, hash); 63 var cached = GetCachedCallSite(rawStrings, hash);
64 64
65 if (!IS_UNDEFINED(cached)) return cached; 65 if (!IS_UNDEFINED(cached)) return cached;
66 66
67 %AddNamedProperty(siteObj, "raw", %ObjectFreeze(rawStrings), 67 %AddNamedProperty(siteObj, "raw", %ObjectFreeze(rawStrings),
68 READ_ONLY | DONT_ENUM | DONT_DELETE); 68 READ_ONLY | DONT_ENUM | DONT_DELETE);
69 69
70 return SetCachedCallSite(%ObjectFreeze(siteObj), hash); 70 return SetCachedCallSite(%ObjectFreeze(siteObj), hash);
71 } 71 }
72 72
73 })(); 73 })
OLDNEW
« no previous file with comments | « src/symbol.js ('k') | src/third_party/fdlibm/fdlibm.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698