| Index: src/typing-reset.cc
|
| diff --git a/src/typing-reset.cc b/src/typing-reset.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b3b3aec573ecfd35bdeae93e3a4905598aedb087
|
| --- /dev/null
|
| +++ b/src/typing-reset.cc
|
| @@ -0,0 +1,31 @@
|
| +// 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::Run(CompilationInfo* info) {
|
| + TypingReseter* visitor = new (info->zone()) TypingReseter(info);
|
| + visitor->VisitAll();
|
| +}
|
| +
|
| +
|
| +void TypingReseter::VisitExpression(Expression* expression) {
|
| + expression->set_bounds(Bounds::Unbounded(info_->zone()));
|
| +}
|
| +}
|
| +} // namespace v8::internal
|
|
|