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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 # Matches Script::Type from objects.h | 156 # Matches Script::Type from objects.h |
157 define TYPE_NATIVE = 0; | 157 define TYPE_NATIVE = 0; |
158 define TYPE_EXTENSION = 1; | 158 define TYPE_EXTENSION = 1; |
159 define TYPE_NORMAL = 2; | 159 define TYPE_NORMAL = 2; |
160 | 160 |
161 # Matches Script::CompilationType from objects.h | 161 # Matches Script::CompilationType from objects.h |
162 define COMPILATION_TYPE_HOST = 0; | 162 define COMPILATION_TYPE_HOST = 0; |
163 define COMPILATION_TYPE_EVAL = 1; | 163 define COMPILATION_TYPE_EVAL = 1; |
164 define COMPILATION_TYPE_JSON = 2; | 164 define COMPILATION_TYPE_JSON = 2; |
165 | 165 |
166 # Matches Messages::kNoLineNumberInfo from v8.h | |
167 define kNoLineNumberInfo = 0; | |
168 | |
169 # Must match PropertyFilter in property-details.h | 166 # Must match PropertyFilter in property-details.h |
170 define PROPERTY_FILTER_NONE = 0; | 167 define PROPERTY_FILTER_NONE = 0; |
171 define PROPERTY_FILTER_ONLY_ENUMERABLE = 2; | 168 define PROPERTY_FILTER_ONLY_ENUMERABLE = 2; |
172 define PROPERTY_FILTER_SKIP_STRINGS = 8; | 169 define PROPERTY_FILTER_SKIP_STRINGS = 8; |
173 define PROPERTY_FILTER_SKIP_SYMBOLS = 16; | 170 define PROPERTY_FILTER_SKIP_SYMBOLS = 16; |
174 | 171 |
175 # Use for keys, values and entries iterators. | 172 # Use for keys, values and entries iterators. |
176 define ITERATOR_KIND_KEYS = 1; | 173 define ITERATOR_KIND_KEYS = 1; |
177 define ITERATOR_KIND_VALUES = 2; | 174 define ITERATOR_KIND_VALUES = 2; |
178 define ITERATOR_KIND_ENTRIES = 3; | 175 define ITERATOR_KIND_ENTRIES = 3; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 define kSloppyModeBlockScopedFunctionRedefinition = 22; | 228 define kSloppyModeBlockScopedFunctionRedefinition = 22; |
232 define kForInInitializer = 23; | 229 define kForInInitializer = 23; |
233 define kArrayProtectorDirtied = 24; | 230 define kArrayProtectorDirtied = 24; |
234 define kArraySpeciesModified = 25; | 231 define kArraySpeciesModified = 25; |
235 define kArrayPrototypeConstructorModified = 26; | 232 define kArrayPrototypeConstructorModified = 26; |
236 define kArrayInstanceProtoModified = 27; | 233 define kArrayInstanceProtoModified = 27; |
237 define kArrayInstanceConstructorModified = 28; | 234 define kArrayInstanceConstructorModified = 28; |
238 define kLegacyFunctionDeclaration = 29; | 235 define kLegacyFunctionDeclaration = 29; |
239 define kRegExpPrototypeSourceGetter = 30; | 236 define kRegExpPrototypeSourceGetter = 30; |
240 define kRegExpPrototypeOldFlagGetter = 31; | 237 define kRegExpPrototypeOldFlagGetter = 31; |
OLD | NEW |