Home | History | Annotate | Download | only in parsing

Lines Matching refs:Rewriter

5 #include "src/parsing/parameter-initializer-rewriter.h"
21 class Rewriter final : public AstExpressionVisitor {
23 Rewriter(uintptr_t stack_limit, Expression* initializer, Scope* old_scope,
30 ~Rewriter();
57 Rewriter::~Rewriter() {
68 void Rewriter::VisitFunctionLiteral(FunctionLiteral* function_literal) {
73 void Rewriter::VisitClassLiteral(ClassLiteral* class_literal) {
93 void Rewriter::VisitVariableProxy(VariableProxy* proxy) {
111 void Rewriter::VisitBlock(Block* stmt) {
119 void Rewriter::VisitTryCatchStatement(TryCatchStatement* stmt) {
125 void Rewriter::VisitWithStatement(WithStatement* stmt) {
137 Rewriter rewriter(stack_limit, initializer, old_scope, new_scope);
138 rewriter.Run();