| 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 19 matching lines...) Expand all Loading... |
| 30 // loaded. | 30 // loaded. |
| 31 | 31 |
| 32 | 32 |
| 33 function CreateDate(time) { | 33 function CreateDate(time) { |
| 34 var date = new $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 var kApiFunctionCache = {}; | 40 var kApiFunctionCache = new InternalArray(); |
| 41 var functionCache = kApiFunctionCache; | 41 var functionCache = kApiFunctionCache; |
| 42 | 42 |
| 43 | 43 |
| 44 function Instantiate(data, name) { | 44 function Instantiate(data, name) { |
| 45 if (!%IsTemplate(data)) return data; | 45 if (!%IsTemplate(data)) return data; |
| 46 var tag = %GetTemplateField(data, kApiTagOffset); | 46 var tag = %GetTemplateField(data, kApiTagOffset); |
| 47 switch (tag) { | 47 switch (tag) { |
| 48 case kFunctionTag: | 48 case kFunctionTag: |
| 49 return InstantiateFunction(data, name); | 49 return InstantiateFunction(data, name); |
| 50 case kNewObjectTag: | 50 case kNewObjectTag: |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 var prop_data = properties[i + 2]; | 113 var prop_data = properties[i + 2]; |
| 114 var attributes = properties[i + 3]; | 114 var attributes = properties[i + 3]; |
| 115 var value = Instantiate(prop_data, name); | 115 var value = Instantiate(prop_data, name); |
| 116 %SetProperty(obj, name, value, attributes); | 116 %SetProperty(obj, name, value, attributes); |
| 117 } | 117 } |
| 118 } finally { | 118 } finally { |
| 119 if (requires_access_checks) %EnableAccessChecks(obj); | 119 if (requires_access_checks) %EnableAccessChecks(obj); |
| 120 } | 120 } |
| 121 } | 121 } |
| 122 } | 122 } |
| OLD | NEW |