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

Unified Diff: src/compiler/typer.h

Issue 1197703002: Use big-boy Types to annotate interface descriptor parameters (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review feedback Created 5 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
Index: src/compiler/typer.h
diff --git a/src/compiler/typer.h b/src/compiler/typer.h
index 66c493357e27a5122237bb44dcf218190caa652a..1a0f4500d129192884b34c1bc99762f213612dfc 100644
--- a/src/compiler/typer.h
+++ b/src/compiler/typer.h
@@ -18,7 +18,8 @@ class LazyTypeCache;
class Typer {
public:
- Typer(Isolate* isolate, Graph* graph, MaybeHandle<Context> context);
+ Typer(Isolate* isolate, Graph* graph, Type::FunctionType* function_type,
+ MaybeHandle<Context> context);
~Typer();
void Run();
@@ -29,6 +30,7 @@ class Typer {
MaybeHandle<Context> context() { return context_; }
Zone* zone() { return graph_->zone(); }
Isolate* isolate() { return isolate_; }
+ Type::FunctionType* function_type() const { return function_type_; }
private:
class Visitor;
@@ -36,6 +38,7 @@ class Typer {
Isolate* isolate_;
Graph* graph_;
+ Type::FunctionType* function_type_;
MaybeHandle<Context> context_;
Decorator* decorator_;

Powered by Google App Engine
This is Rietveld 408576698