Index: src/typing-reset.cc |
diff --git a/src/typing-reset.cc b/src/typing-reset.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..0650656b2e54ecfc4606e70eb666365dc577f106 |
--- /dev/null |
+++ b/src/typing-reset.cc |
@@ -0,0 +1,25 @@ |
+// 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. |
+ |
+#include "src/v8.h" |
+ |
+#include "src/typing-reset.h" |
+ |
+#include "src/ast.h" |
+#include "src/codegen.h" |
+#include "src/scopes.h" |
+ |
+namespace v8 { |
+namespace internal { |
+ |
+ |
+TypingReseter::TypingReseter(CompilationInfo* info) |
+ : AstExpressionVisitor(info), info_(info) {} |
+ |
+ |
+void TypingReseter::VisitExpression(Expression* expression) { |
+ expression->set_bounds(Bounds::Unbounded(info_->zone())); |
+} |
+} |
+} // namespace v8::internal |