OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_GLOBALS_H_ | 5 #ifndef V8_GLOBALS_H_ |
6 #define V8_GLOBALS_H_ | 6 #define V8_GLOBALS_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 class Descriptor; | 370 class Descriptor; |
371 class DescriptorArray; | 371 class DescriptorArray; |
372 class TransitionArray; | 372 class TransitionArray; |
373 class ExternalReference; | 373 class ExternalReference; |
374 class FixedArray; | 374 class FixedArray; |
375 class FunctionTemplateInfo; | 375 class FunctionTemplateInfo; |
376 class MemoryChunk; | 376 class MemoryChunk; |
377 class SeededNumberDictionary; | 377 class SeededNumberDictionary; |
378 class UnseededNumberDictionary; | 378 class UnseededNumberDictionary; |
379 class NameDictionary; | 379 class NameDictionary; |
| 380 class GlobalDictionary; |
380 template <typename T> class MaybeHandle; | 381 template <typename T> class MaybeHandle; |
381 template <typename T> class Handle; | 382 template <typename T> class Handle; |
382 class Heap; | 383 class Heap; |
383 class HeapObject; | 384 class HeapObject; |
384 class IC; | 385 class IC; |
385 class InterceptorInfo; | 386 class InterceptorInfo; |
386 class Isolate; | 387 class Isolate; |
387 class JSReceiver; | 388 class JSReceiver; |
388 class JSArray; | 389 class JSArray; |
389 class JSFunction; | 390 class JSFunction; |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
939 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) { | 940 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) { |
940 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral); | 941 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral); |
941 DCHECK(IsValidFunctionKind(kind)); | 942 DCHECK(IsValidFunctionKind(kind)); |
942 return kind; | 943 return kind; |
943 } | 944 } |
944 } } // namespace v8::internal | 945 } } // namespace v8::internal |
945 | 946 |
946 namespace i = v8::internal; | 947 namespace i = v8::internal; |
947 | 948 |
948 #endif // V8_GLOBALS_H_ | 949 #endif // V8_GLOBALS_H_ |
OLD | NEW |