typing-reset.h 667 Bytes
Newer Older
1 2 3 4 5 6 7
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_TYPING_RESET_H_
#define V8_TYPING_RESET_H_

8
#include "src/ast/ast-expression-visitor.h"
9 10 11 12 13 14 15 16 17

namespace v8 {
namespace internal {

// A Visitor over a CompilationInfo's AST that resets
// typing bounds back to their default.

class TypingReseter : public AstExpressionVisitor {
 public:
18
  TypingReseter(Isolate* isolate, FunctionLiteral* root);
19 20 21 22

 protected:
  void VisitExpression(Expression* expression) override;
};
23 24
}  // namespace internal
}  // namespace v8
25 26

#endif  // V8_TYPING_RESET_H_