summaryrefslogtreecommitdiff
path: root/deps/v8/src/typing-reset.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/typing-reset.h')
-rw-r--r--deps/v8/src/typing-reset.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/deps/v8/src/typing-reset.h b/deps/v8/src/typing-reset.h
deleted file mode 100644
index 3e1969d9ed..0000000000
--- a/deps/v8/src/typing-reset.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// 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_
-
-#include "src/ast/ast-expression-visitor.h"
-
-namespace v8 {
-namespace internal {
-
-// A Visitor over a CompilationInfo's AST that resets
-// typing bounds back to their default.
-
-class TypingReseter : public AstExpressionVisitor {
- public:
- TypingReseter(Isolate* isolate, FunctionLiteral* root);
-
- protected:
- void VisitExpression(Expression* expression) override;
-};
-} // namespace internal
-} // namespace v8
-
-#endif // V8_TYPING_RESET_H_