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

Unified Diff: tracing/tracing/extras/importer/v8/codemap.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase 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: tracing/tracing/extras/importer/v8/codemap.html
diff --git a/tracing/tracing/extras/importer/v8/codemap.html b/tracing/tracing/extras/importer/v8/codemap.html
index 96fd00d66661d9c2785baf2396691d7a5b1e1018..898759f8a948f0829a928b19a3289a2911320c89 100644
--- a/tracing/tracing/extras/importer/v8/codemap.html
+++ b/tracing/tracing/extras/importer/v8/codemap.html
@@ -163,8 +163,9 @@ tr.exportTo('tr.e.importer.v8', function() {
*/
CodeMap.prototype.findEntryInLibraries = function(addr) {
var pageAddr = addr >>> CodeMap.PAGE_ALIGNMENT;
- if (pageAddr in this.pages_)
+ if (pageAddr in this.pages_) {
return this.findInTree_(this.libraries_, addr);
+ }
return undefined;
};
« no previous file with comments | « tracing/tracing/extras/importer/trace_event_importer_test.html ('k') | tracing/tracing/extras/importer/v8/splaytree.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698