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 20 matching lines...) Expand all Loading... |
31 const NONE = 0; | 31 const NONE = 0; |
32 const READ_ONLY = 1; | 32 const READ_ONLY = 1; |
33 const DONT_ENUM = 2; | 33 const DONT_ENUM = 2; |
34 const DONT_DELETE = 4; | 34 const DONT_DELETE = 4; |
35 | 35 |
36 # Constants used for getter and setter operations. | 36 # Constants used for getter and setter operations. |
37 const GETTER = 0; | 37 const GETTER = 0; |
38 const SETTER = 1; | 38 const SETTER = 1; |
39 | 39 |
40 # These definitions must match the index of the properties in objects.h. | 40 # These definitions must match the index of the properties in objects.h. |
41 const kApiTagOffset = 0; | 41 const kApiTagOffset = 0; |
42 const kApiPropertyListOffset = 1; | 42 const kApiPropertyListOffset = 1; |
43 const kApiSerialNumberOffset = 2; | 43 const kApiSerialNumberOffset = 2; |
44 const kApiConstructorOffset = 2; | 44 const kApiConstructorOffset = 2; |
45 const kApiPrototypeTemplateOffset = 5; | 45 const kApiPrototypeTemplateOffset = 5; |
46 const kApiParentTemplateOffset = 6; | 46 const kApiParentTemplateOffset = 6; |
| 47 const kApiPrototypeAttributesOffset = 15; |
47 | 48 |
48 const NO_HINT = 0; | 49 const NO_HINT = 0; |
49 const NUMBER_HINT = 1; | 50 const NUMBER_HINT = 1; |
50 const STRING_HINT = 2; | 51 const STRING_HINT = 2; |
51 | 52 |
52 const kFunctionTag = 0; | 53 const kFunctionTag = 0; |
53 const kNewObjectTag = 1; | 54 const kNewObjectTag = 1; |
54 | 55 |
55 # For date.js. | 56 # For date.js. |
56 const HoursPerDay = 24; | 57 const HoursPerDay = 24; |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 171 |
171 # PropertyDescriptor return value indices - must match | 172 # PropertyDescriptor return value indices - must match |
172 # PropertyDescriptorIndices in runtime.cc. | 173 # PropertyDescriptorIndices in runtime.cc. |
173 const IS_ACCESSOR_INDEX = 0; | 174 const IS_ACCESSOR_INDEX = 0; |
174 const VALUE_INDEX = 1; | 175 const VALUE_INDEX = 1; |
175 const GETTER_INDEX = 2; | 176 const GETTER_INDEX = 2; |
176 const SETTER_INDEX = 3; | 177 const SETTER_INDEX = 3; |
177 const WRITABLE_INDEX = 4; | 178 const WRITABLE_INDEX = 4; |
178 const ENUMERABLE_INDEX = 5; | 179 const ENUMERABLE_INDEX = 5; |
179 const CONFIGURABLE_INDEX = 6; | 180 const CONFIGURABLE_INDEX = 6; |
OLD | NEW |