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

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: Latest 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
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/typer.h
diff --git a/src/compiler/typer.h b/src/compiler/typer.h
index db19132b16f2b2492ae6baa7844cd0962bc641e2..1d5929822aaf113311bf4f6927d713801a4b15f6 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();
@@ -33,9 +34,11 @@ class Typer {
MaybeHandle<Context> context() const { return context_; }
Zone* zone() const { return graph()->zone(); }
Isolate* isolate() const { return isolate_; }
+ Type::FunctionType* function_type() const { return function_type_; }
Isolate* const isolate_;
Graph* const graph_;
+ Type::FunctionType* function_type_;
MaybeHandle<Context> const context_;
Decorator* decorator_;
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/compiler/typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698