| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 class Heap; | 366 class Heap; |
| 367 class HeapObject; | 367 class HeapObject; |
| 368 class IC; | 368 class IC; |
| 369 class InterceptorInfo; | 369 class InterceptorInfo; |
| 370 class Isolate; | 370 class Isolate; |
| 371 class JSReceiver; | 371 class JSReceiver; |
| 372 class JSArray; | 372 class JSArray; |
| 373 class JSFunction; | 373 class JSFunction; |
| 374 class JSObject; | 374 class JSObject; |
| 375 class LargeObjectSpace; | 375 class LargeObjectSpace; |
| 376 class LookupResult; | |
| 377 class MacroAssembler; | 376 class MacroAssembler; |
| 378 class Map; | 377 class Map; |
| 379 class MapSpace; | 378 class MapSpace; |
| 380 class MarkCompactCollector; | 379 class MarkCompactCollector; |
| 381 class NewSpace; | 380 class NewSpace; |
| 382 class Object; | 381 class Object; |
| 383 class OldSpace; | 382 class OldSpace; |
| 384 class Foreign; | 383 class Foreign; |
| 385 class Scope; | 384 class Scope; |
| 386 class ScopeInfo; | 385 class ScopeInfo; |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 887 DCHECK(IsValidFunctionKind(kind)); | 886 DCHECK(IsValidFunctionKind(kind)); |
| 888 return kind & | 887 return kind & |
| 889 (FunctionKind::kBaseConstructor | FunctionKind::kSubclassConstructor | | 888 (FunctionKind::kBaseConstructor | FunctionKind::kSubclassConstructor | |
| 890 FunctionKind::kDefaultConstructor); | 889 FunctionKind::kDefaultConstructor); |
| 891 } | 890 } |
| 892 } } // namespace v8::internal | 891 } } // namespace v8::internal |
| 893 | 892 |
| 894 namespace i = v8::internal; | 893 namespace i = v8::internal; |
| 895 | 894 |
| 896 #endif // V8_GLOBALS_H_ | 895 #endif // V8_GLOBALS_H_ |
| OLD | NEW |