| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 return %_CallFunction(receiver, f); | 186 return %_CallFunction(receiver, f); |
| 187 } | 187 } |
| 188 | 188 |
| 189 | 189 |
| 190 // ---------------------------------------------------------------------------- | 190 // ---------------------------------------------------------------------------- |
| 191 | 191 |
| 192 // Set up global object. | 192 // Set up global object. |
| 193 function SetUpGlobal() { | 193 function SetUpGlobal() { |
| 194 %CheckIsBootstrapping(); | 194 %CheckIsBootstrapping(); |
| 195 // ECMA 262 - 15.1.1.1. | 195 // ECMA 262 - 15.1.1.1. |
| 196 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY); | 196 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE); |
| 197 | 197 |
| 198 // ECMA-262 - 15.1.1.2. | 198 // ECMA-262 - 15.1.1.2. |
| 199 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE | READ_ONLY); | 199 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE); |
| 200 | 200 |
| 201 // ECMA-262 - 15.1.1.3. | 201 // ECMA-262 - 15.1.1.3. |
| 202 %SetProperty(global, "undefined", void 0, | 202 %SetProperty(global, "undefined", void 0, DONT_ENUM | DONT_DELETE); |
| 203 DONT_ENUM | DONT_DELETE | READ_ONLY); | |
| 204 | 203 |
| 205 // Set up non-enumerable function on the global object. | 204 // Set up non-enumerable function on the global object. |
| 206 InstallFunctions(global, DONT_ENUM, $Array( | 205 InstallFunctions(global, DONT_ENUM, $Array( |
| 207 "isNaN", GlobalIsNaN, | 206 "isNaN", GlobalIsNaN, |
| 208 "isFinite", GlobalIsFinite, | 207 "isFinite", GlobalIsFinite, |
| 209 "parseInt", GlobalParseInt, | 208 "parseInt", GlobalParseInt, |
| 210 "parseFloat", GlobalParseFloat, | 209 "parseFloat", GlobalParseFloat, |
| 211 "eval", GlobalEval | 210 "eval", GlobalEval |
| 212 )); | 211 )); |
| 213 } | 212 } |
| (...skipping 1339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1553 | 1552 |
| 1554 function SetUpFunction() { | 1553 function SetUpFunction() { |
| 1555 %CheckIsBootstrapping(); | 1554 %CheckIsBootstrapping(); |
| 1556 InstallFunctions($Function.prototype, DONT_ENUM, $Array( | 1555 InstallFunctions($Function.prototype, DONT_ENUM, $Array( |
| 1557 "bind", FunctionBind, | 1556 "bind", FunctionBind, |
| 1558 "toString", FunctionToString | 1557 "toString", FunctionToString |
| 1559 )); | 1558 )); |
| 1560 } | 1559 } |
| 1561 | 1560 |
| 1562 SetUpFunction(); | 1561 SetUpFunction(); |
| OLD | NEW |