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

Side by Side Diff: src/date.js

Issue 1127983003: Use function wrapper argument to expose internal arrays to native scripts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebased and fixed nits 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/contexts.h ('k') | src/harmony-array.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 file relies on the fact that the following declarations have been made 5 // This file relies on the fact that the following declarations have been made
6 // in v8natives.js: 6 // in v8natives.js:
7 // var $isFinite = GlobalIsFinite; 7 // var $isFinite = GlobalIsFinite;
8 8
9 var $createDate; 9 var $createDate;
10 10
11 // ------------------------------------------------------------------- 11 // -------------------------------------------------------------------
12 12
13 (function(global, shared, exports) { 13 (function(global, shared, exports) {
14 14
15 "use strict"; 15 "use strict";
16 16
17 %CheckIsBootstrapping(); 17 %CheckIsBootstrapping();
18 18
19 // -------------------------------------------------------------------
20 // Imports
21
19 var GlobalDate = global.Date; 22 var GlobalDate = global.Date;
23 var InternalArray = shared.InternalArray;
24
25 // -------------------------------------------------------------------
20 26
21 // This file contains date support implemented in JavaScript. 27 // This file contains date support implemented in JavaScript.
22 28
23 var timezone_cache_time = NAN; 29 var timezone_cache_time = NAN;
24 var timezone_cache_timezone; 30 var timezone_cache_timezone;
25 31
26 function LocalTimezone(t) { 32 function LocalTimezone(t) {
27 if (NUMBER_IS_NAN(t)) return ""; 33 if (NUMBER_IS_NAN(t)) return "";
28 CheckDateCacheCurrent(); 34 CheckDateCacheCurrent();
29 if (t == timezone_cache_time) { 35 if (t == timezone_cache_time) {
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 "getYear", DateGetYear, 823 "getYear", DateGetYear,
818 "setYear", DateSetYear, 824 "setYear", DateSetYear,
819 "toISOString", DateToISOString, 825 "toISOString", DateToISOString,
820 "toJSON", DateToJSON 826 "toJSON", DateToJSON
821 ]); 827 ]);
822 828
823 // Expose to the global scope. 829 // Expose to the global scope.
824 $createDate = CreateDate; 830 $createDate = CreateDate;
825 831
826 }) 832 })
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/harmony-array.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698