Home
last modified time | relevance | path

Searched refs:AstContext (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/
Dhydrogen.h448 class AstContext {
469 AstContext(HGraphBuilder* owner, Expression::Context kind);
470 virtual ~AstContext();
485 AstContext* outer_;
490 class EffectContext: public AstContext {
493 : AstContext(owner, Expression::kEffect) { in EffectContext()
502 class ValueContext: public AstContext {
505 : AstContext(owner, Expression::kValue) { in ValueContext()
514 class TestContext: public AstContext {
519 : AstContext(owner, Expression::kTest), in TestContext()
[all …]
Dhydrogen.cc2022 AstContext::AstContext(HGraphBuilder* owner, Expression::Context kind) in AstContext() function in v8::internal::AstContext
2034 AstContext::~AstContext() { in ~AstContext()
2518 AstContext* context = call_context(); in VisitReturnStatement()