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

Unified Diff: src/typing-asm.h

Issue 2045703007: V8. ASM-2-WASM. New type system. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « BUILD.gn ('k') | src/v8.gyp » ('j') | src/wasm/asm-types.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/typing-asm.h
diff --git a/src/typing-asm.h b/src/typing-asm.h
index 09eacaa0ae07717e0336916d71986ce99f2dd88a..d2e34050d183fd6789e6005e174421cf234a1556 100644
--- a/src/typing-asm.h
+++ b/src/typing-asm.h
@@ -2,8 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef V8_TYPING_ASM_H_
-#define V8_TYPING_ASM_H_
+#ifndef SRC_TYPING_ASM_H_
+#define SRC_TYPING_ASM_H_
+
+#include <string>
#include "src/allocation.h"
#include "src/ast/ast-type-bounds.h"
@@ -11,6 +13,7 @@
#include "src/effects.h"
#include "src/type-info.h"
#include "src/types.h"
+#include "src/wasm/asm-types.h"
#include "src/zone.h"
namespace v8 {
@@ -19,6 +22,10 @@ namespace internal {
class TypeCache;
class AsmTyper : public AstVisitor {
+ private:
+ // TODO(jpp): remove this typedef.
+ // using Type = wasm::AsmType;
bradnelson 2016/06/10 05:59:51 Leftover?
John 2016/06/13 14:20:47 Done.
+
public:
explicit AsmTyper(Isolate* isolate, Zone* zone, Script* script,
FunctionLiteral* root);
@@ -185,4 +192,4 @@ class AsmTyper : public AstVisitor {
} // namespace internal
} // namespace v8
-#endif // V8_TYPING_ASM_H_
+#endif // SRC_TYPING_ASM_H_
« no previous file with comments | « BUILD.gn ('k') | src/v8.gyp » ('j') | src/wasm/asm-types.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698