OLD | NEW |
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 var $createDate; | 5 var $createDate; |
6 | 6 |
7 // ------------------------------------------------------------------- | 7 // ------------------------------------------------------------------- |
8 | 8 |
9 (function(global, utils) { | 9 (function(global, utils) { |
10 | 10 |
(...skipping 863 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 "toUTCString", DateToUTCString, | 874 "toUTCString", DateToUTCString, |
875 "getYear", DateGetYear, | 875 "getYear", DateGetYear, |
876 "setYear", DateSetYear, | 876 "setYear", DateSetYear, |
877 "toISOString", DateToISOString, | 877 "toISOString", DateToISOString, |
878 "toJSON", DateToJSON | 878 "toJSON", DateToJSON |
879 ]); | 879 ]); |
880 | 880 |
881 %InstallToContext(["create_date_fun", CreateDate]); | 881 %InstallToContext(["create_date_fun", CreateDate]); |
882 | 882 |
883 }) | 883 }) |
OLD | NEW |