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 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 13 matching lines...) Expand all Loading... |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 // This file contains infrastructure used by the API. See | 28 // This file contains infrastructure used by the API. See |
29 // v8natives.js for an explanation of these files are processed and | 29 // v8natives.js for an explanation of these files are processed and |
30 // loaded. | 30 // loaded. |
31 | 31 |
32 | 32 |
33 function CreateDate(time) { | 33 function CreateDate(time) { |
34 var date = new ORIGINAL_DATE(); | 34 var date = new $Date(); |
35 date.setTime(time); | 35 date.setTime(time); |
36 return date; | 36 return date; |
37 } | 37 } |
38 | 38 |
39 | 39 |
40 const kApiFunctionCache = {}; | 40 const kApiFunctionCache = {}; |
41 const functionCache = kApiFunctionCache; | 41 const functionCache = kApiFunctionCache; |
42 | 42 |
43 | 43 |
44 function Instantiate(data, name) { | 44 function Instantiate(data, name) { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 var prop_data = properties[i + 2]; | 101 var prop_data = properties[i + 2]; |
102 var attributes = properties[i + 3]; | 102 var attributes = properties[i + 3]; |
103 var value = Instantiate(prop_data, name); | 103 var value = Instantiate(prop_data, name); |
104 %SetProperty(obj, name, value, attributes); | 104 %SetProperty(obj, name, value, attributes); |
105 } | 105 } |
106 } finally { | 106 } finally { |
107 if (requires_access_checks) %EnableAccessChecks(obj); | 107 if (requires_access_checks) %EnableAccessChecks(obj); |
108 } | 108 } |
109 } | 109 } |
110 } | 110 } |
OLD | NEW |