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

Unified Diff: tracing/tracing/extras/importer/trace_code_map.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/trace_code_map.html
diff --git a/tracing/tracing/extras/importer/trace_code_map.html b/tracing/tracing/extras/importer/trace_code_map.html
index 53180d4199b272114869dca013b5f060d4cbdcbe..01e3281a6ee22cde97117c839f738580b6a66dbf 100644
--- a/tracing/tracing/extras/importer/trace_code_map.html
+++ b/tracing/tracing/extras/importer/trace_code_map.html
@@ -28,8 +28,7 @@ tr.exportTo('tr.e.importer', function() {
moveEntry: function(oldAddressHex, newAddressHex, size) {
var entry = this.getBank_(oldAddressHex)
.removeEntry(this.getAddress_(oldAddressHex));
- if (!entry)
- return;
+ if (!entry) return;
entry.address = this.getAddress_(newAddressHex);
entry.size = size;
@@ -77,14 +76,12 @@ tr.exportTo('tr.e.importer', function() {
removeEntry: function(address) {
// findLowIndexInSortedArray returns 1 for empty. Just handle the
// empty list and bail early.
- if (this.entries_.length === 0)
- return undefined;
+ if (this.entries_.length === 0) return undefined;
var index = tr.b.math.findLowIndexInSortedArray(
this.entries_, function(entry) { return entry.address; }, address);
var entry = this.entries_[index];
- if (!entry || entry.address !== address)
- return undefined;
+ if (!entry || entry.address !== address) return undefined;
this.entries_.splice(index, 1);
return entry;
@@ -101,8 +98,9 @@ tr.exportTo('tr.e.importer', function() {
addEntry: function(newEntry) {
// findLowIndexInSortedArray returns 1 for empty list. Just push the
// new address as it's the only item.
- if (this.entries_.length === 0)
+ if (this.entries_.length === 0) {
this.entries_.push(newEntry);
+ }
var endAddress = newEntry.address + newEntry.size;
var lastIndex = tr.b.math.findLowIndexInSortedArray(
@@ -111,8 +109,7 @@ tr.exportTo('tr.e.importer', function() {
for (index = lastIndex - 1; index >= 0; --index) {
var entry = this.entries_[index];
var entryEndAddress = entry.address + entry.size;
- if (entryEndAddress <= newEntry.address)
- break;
+ if (entryEndAddress <= newEntry.address) break;
}
++index;
this.entries_.splice(index, lastIndex - index, newEntry);

Powered by Google App Engine
This is Rietveld 408576698