v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
ast-source-ranges.h File Reference
Include dependency graph for ast-source-ranges.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  v8::internal::SourceRange
 
class  v8::internal::AstNodeSourceRanges
 
class  v8::internal::BinaryOperationSourceRanges
 
class  v8::internal::ContinuationSourceRanges
 
class  v8::internal::BlockSourceRanges
 
class  v8::internal::CaseClauseSourceRanges
 
class  v8::internal::ConditionalChainSourceRanges
 
class  v8::internal::ConditionalSourceRanges
 
class  v8::internal::FunctionLiteralSourceRanges
 
class  v8::internal::IfStatementSourceRanges
 
class  v8::internal::IterationStatementSourceRanges
 
class  v8::internal::JumpStatementSourceRanges
 
class  v8::internal::NaryOperationSourceRanges
 
class  v8::internal::ExpressionSourceRanges
 
class  v8::internal::SuspendSourceRanges
 
class  v8::internal::SwitchStatementSourceRanges
 
class  v8::internal::ThrowSourceRanges
 
class  v8::internal::TryCatchStatementSourceRanges
 
class  v8::internal::TryFinallyStatementSourceRanges
 
class  v8::internal::SourceRangeMap
 

Namespaces

namespace  v8
 
namespace  v8::internal
 

Macros

#define AST_SOURCE_RANGE_LIST(V)
 
#define DEFINE_MAP_INSERT(type)
 

Enumerations

enum class  v8::internal::SourceRangeKind {
  v8::internal::kBody , v8::internal::kCatch , v8::internal::kContinuation , v8::internal::kElse ,
  v8::internal::kFinally , v8::internal::kRight , v8::internal::kThen
}
 

Macro Definition Documentation

◆ AST_SOURCE_RANGE_LIST

#define AST_SOURCE_RANGE_LIST ( V)
Value:
V(BinaryOperation) \
V(Block) \
V(CaseClause) \
V(ConditionalChain) \
V(Conditional) \
V(Expression) \
V(FunctionLiteral) \
V(IfStatement) \
V(IterationStatement) \
V(JumpStatement) \
V(NaryOperation) \
V(Suspend) \
V(SwitchStatement) \
V(Throw) \
V(TryCatchStatement) \
V(TryFinallyStatement)
#define V(Name)

Definition at line 45 of file ast-source-ranges.h.

◆ DEFINE_MAP_INSERT

#define DEFINE_MAP_INSERT ( type)
Value:
void Insert(type* node, type##SourceRanges* ranges) { \
DCHECK_NOT_NULL(node); \
map_.emplace(node, ranges); \
}
const MapRef map_

Definition at line 434 of file ast-source-ranges.h.