Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: src/globals.h

Issue 1264993002: Debugger: refactor ScopeIterator, FrameInspector and DebugEvaluate. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: readd include Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 416
417 class AccessorInfo; 417 class AccessorInfo;
418 class Allocation; 418 class Allocation;
419 class Arguments; 419 class Arguments;
420 class Assembler; 420 class Assembler;
421 class Code; 421 class Code;
422 class CodeGenerator; 422 class CodeGenerator;
423 class CodeStub; 423 class CodeStub;
424 class Context; 424 class Context;
425 class Debug; 425 class Debug;
426 class Debugger;
427 class DebugInfo; 426 class DebugInfo;
428 class Descriptor; 427 class Descriptor;
429 class DescriptorArray; 428 class DescriptorArray;
430 class TransitionArray; 429 class TransitionArray;
431 class ExternalReference; 430 class ExternalReference;
432 class FixedArray; 431 class FixedArray;
433 class FunctionTemplateInfo; 432 class FunctionTemplateInfo;
434 class MemoryChunk; 433 class MemoryChunk;
435 class SeededNumberDictionary; 434 class SeededNumberDictionary;
436 class UnseededNumberDictionary; 435 class UnseededNumberDictionary;
(...skipping 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) { 1035 inline FunctionKind WithObjectLiteralBit(FunctionKind kind) {
1037 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral); 1036 kind = static_cast<FunctionKind>(kind | FunctionKind::kInObjectLiteral);
1038 DCHECK(IsValidFunctionKind(kind)); 1037 DCHECK(IsValidFunctionKind(kind));
1039 return kind; 1038 return kind;
1040 } 1039 }
1041 } } // namespace v8::internal 1040 } } // namespace v8::internal
1042 1041
1043 namespace i = v8::internal; 1042 namespace i = v8::internal;
1044 1043
1045 #endif // V8_GLOBALS_H_ 1044 #endif // V8_GLOBALS_H_
OLDNEW
« src/debug/debug-scopes.cc ('K') | « src/debug/debug-scopes.cc ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698