Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(934)

Unified Diff: test/cctest/expression-type-collector.h

Issue 2146853004: [wasm] Drop old typing-asm and its tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/cctest/cctest.gyp ('k') | test/cctest/expression-type-collector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/expression-type-collector.h
diff --git a/test/cctest/expression-type-collector.h b/test/cctest/expression-type-collector.h
deleted file mode 100644
index a52cfdacc8fcbcdedfc5c94af4466e6f71e1632e..0000000000000000000000000000000000000000
--- a/test/cctest/expression-type-collector.h
+++ /dev/null
@@ -1,43 +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_EXPRESSION_TYPE_COLLECTOR_H_
-#define V8_EXPRESSION_TYPE_COLLECTOR_H_
-
-#include "src/ast/ast-expression-visitor.h"
-
-namespace v8 {
-namespace internal {
-
-class AstTypeBounds;
-
-// A Visitor over an AST that collects a human readable string summarizing
-// structure and types. Used for testing of the typing information attached
-// to the expression nodes of an AST.
-
-struct ExpressionTypeEntry {
- int depth;
- const char* kind;
- const AstRawString* name;
- Bounds bounds;
-};
-
-class ExpressionTypeCollector : public AstExpressionVisitor {
- public:
- ExpressionTypeCollector(Isolate* isolate, FunctionLiteral* root,
- const AstTypeBounds* bounds,
- ZoneVector<ExpressionTypeEntry>* dst);
- void Run();
-
- protected:
- void VisitExpression(Expression* expression);
-
- private:
- const AstTypeBounds* bounds_;
- ZoneVector<ExpressionTypeEntry>* result_;
-};
-} // namespace internal
-} // namespace v8
-
-#endif // V8_EXPRESSION_TYPE_COLLECTOR_H_
« no previous file with comments | « test/cctest/cctest.gyp ('k') | test/cctest/expression-type-collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698