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

Unified Diff: src/compiler/typer.cc

Issue 2707873002: Collect type profile for DevTools. (Closed)
Patch Set: Add documentation and sprinkle consts around. Created 3 years, 9 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 c15d40702f9a35d04783855c903ce68a4611c312..772f8d676923ab855822dc1e06a05fdfc88d94d6 100644
--- a/src/compiler/typer.cc
+++ b/src/compiler/typer.cc
@@ -1273,6 +1273,11 @@ Type* Typer::Visitor::TypeJSStoreDataPropertyInLiteral(Node* node) {
return nullptr;
}
+Type* Typer::Visitor::TypeJSCollectTypeProfile(Node* node) {
+ UNREACHABLE();
+ return nullptr;
+}
+
Type* Typer::Visitor::TypeJSDeleteProperty(Node* node) {
return Type::Boolean();
}

Powered by Google App Engine
This is Rietveld 408576698