Lines Matching defs:AstContext
28 class AstGraphBuilder::AstContext BASE_EMBEDDED {
35 // that is about to be plugged into this AstContext.
53 AstContext(AstGraphBuilder* owner, Expression::Context kind);
54 virtual ~AstContext();
68 AstContext* outer_;
73 class AstGraphBuilder::AstEffectContext final : public AstContext {
76 : AstContext(owner, Expression::kEffect) {}
84 class AstGraphBuilder::AstValueContext final : public AstContext {
87 : AstContext(owner, Expression::kValue) {}
95 class AstGraphBuilder::AstTestContext final : public AstContext {
98 : AstContext(owner, Expression::kTest), feedback_id_(feedback_id) {}
942 AstGraphBuilder::AstContext::AstContext(AstGraphBuilder* own,
952 AstGraphBuilder::AstContext::~AstContext() {
1100 // Reuses enclosing AstContext.