| OLD | NEW |
| 1 # Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 # Copyright 2006-2009 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); | 110 macro IS_ERROR(arg) = (%_ClassOf(arg) === 'Error'); |
| 111 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); | 111 macro IS_SCRIPT(arg) = (%_ClassOf(arg) === 'Script'); |
| 112 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); | 112 macro IS_ARGUMENTS(arg) = (%_ClassOf(arg) === 'Arguments'); |
| 113 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); | 113 macro IS_GLOBAL(arg) = (%_ClassOf(arg) === 'global'); |
| 114 macro IS_ARRAYBUFFER(arg) = (%_ClassOf(arg) === 'ArrayBuffer'); | 114 macro IS_ARRAYBUFFER(arg) = (%_ClassOf(arg) === 'ArrayBuffer'); |
| 115 macro IS_DATAVIEW(arg) = (%_ClassOf(arg) === 'DataView'); | 115 macro IS_DATAVIEW(arg) = (%_ClassOf(arg) === 'DataView'); |
| 116 macro IS_SHAREDARRAYBUFFER(arg) = (%_ClassOf(arg) === 'SharedArrayBuffer'); | 116 macro IS_SHAREDARRAYBUFFER(arg) = (%_ClassOf(arg) === 'SharedArrayBuffer'); |
| 117 macro IS_GENERATOR(arg) = (%_ClassOf(arg) === 'Generator'); | 117 macro IS_GENERATOR(arg) = (%_ClassOf(arg) === 'Generator'); |
| 118 macro IS_SET_ITERATOR(arg) = (%_ClassOf(arg) === 'Set Iterator'); | 118 macro IS_SET_ITERATOR(arg) = (%_ClassOf(arg) === 'Set Iterator'); |
| 119 macro IS_MAP_ITERATOR(arg) = (%_ClassOf(arg) === 'Map Iterator'); | 119 macro IS_MAP_ITERATOR(arg) = (%_ClassOf(arg) === 'Map Iterator'); |
| 120 macro IS_UNDETECTABLE(arg) = (%_IsUndetectableObject(arg)); | |
| 121 macro IS_STRONG(arg) = (%IsStrong(arg)); | 120 macro IS_STRONG(arg) = (%IsStrong(arg)); |
| 122 | 121 |
| 123 # Macro for ECMAScript 5 queries of the type: | 122 # Macro for ECMAScript 5 queries of the type: |
| 124 # "Type(O) is object." | 123 # "Type(O) is object." |
| 125 # This is the same as being either a function or an object in V8 terminology | 124 # This is the same as being either a function or an object in V8 terminology |
| 126 # (including proxies). | 125 # (including proxies). |
| 127 # In addition, an undetectable object is also included by this. | 126 # In addition, an undetectable object is also included by this. |
| 128 macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg)); | 127 macro IS_SPEC_OBJECT(arg) = (%_IsSpecObject(arg)); |
| 129 | 128 |
| 130 # Macro for ECMAScript 5 queries of the type: | 129 # Macro for ECMAScript 5 queries of the type: |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 define NOT_FOUND = -1; | 304 define NOT_FOUND = -1; |
| 306 | 305 |
| 307 # Check whether debug is active. | 306 # Check whether debug is active. |
| 308 define DEBUG_IS_ACTIVE = (%_DebugIsActive() != 0); | 307 define DEBUG_IS_ACTIVE = (%_DebugIsActive() != 0); |
| 309 macro DEBUG_IS_STEPPING(function) = (%_DebugIsActive() != 0 && %DebugCallbackSup
portsStepping(function)); | 308 macro DEBUG_IS_STEPPING(function) = (%_DebugIsActive() != 0 && %DebugCallbackSup
portsStepping(function)); |
| 310 macro DEBUG_PREPARE_STEP_IN_IF_STEPPING(function) = if (DEBUG_IS_STEPPING(functi
on)) %DebugPrepareStepInIfStepping(function); | 309 macro DEBUG_PREPARE_STEP_IN_IF_STEPPING(function) = if (DEBUG_IS_STEPPING(functi
on)) %DebugPrepareStepInIfStepping(function); |
| 311 | 310 |
| 312 # SharedFlag equivalents | 311 # SharedFlag equivalents |
| 313 define kNotShared = false; | 312 define kNotShared = false; |
| 314 define kShared = true; | 313 define kShared = true; |
| OLD | NEW |