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

Unified Diff: src/compiler/typer.cc

Issue 1323463005: [Interpreter] Add support for JS calls. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 3 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.cc
diff --git a/src/compiler/typer.cc b/src/compiler/typer.cc
index 594e4bd61369e5b0caa6830127ab211a698722ed..c5008220a0cf53315f9adb38614a881093bc49d3 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -609,6 +609,11 @@ Bounds Typer::Visitor::TypeCall(Node* node) {
}
+Bounds Typer::Visitor::TypeCallVarArgs(Node* node) {
+ return Bounds::Unbounded();
+}
+
+
Bounds Typer::Visitor::TypeProjection(Node* node) {
// TODO(titzer): use the output type of the input to determine the bounds.
return Bounds::Unbounded();

Powered by Google App Engine
This is Rietveld 408576698