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

Unified Diff: tools/codemap.js

Issue 638633002: Tick processor: Print C++ entry points (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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 | « test/mjsunit/tools/tickprocessor-test.separate-ic ('k') | tools/logreader.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/codemap.js
diff --git a/tools/codemap.js b/tools/codemap.js
index 129179e84564b22d634ebb7dfebc947665dc1d8a..e336a8ee40f29366479b98ed05072c86c816c65f 100644
--- a/tools/codemap.js
+++ b/tools/codemap.js
@@ -260,9 +260,10 @@ CodeMap.prototype.getAllLibrariesEntries = function() {
* @param {string} opt_name Code entry name.
yurys 2014/10/15 05:35:47 opt_type parameter annotation is missing
Jakob Kummerow 2014/10/15 15:08:57 Done.
* @constructor
*/
-CodeMap.CodeEntry = function(size, opt_name) {
+CodeMap.CodeEntry = function(size, opt_name, opt_type) {
loislo 2014/10/14 15:49:15 please annotate
Jakob Kummerow 2014/10/15 15:08:57 Done.
this.size = size;
this.name = opt_name || '';
+ this.type = opt_type || '';
this.nameUpdated_ = false;
};
« no previous file with comments | « test/mjsunit/tools/tickprocessor-test.separate-ic ('k') | tools/logreader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698