mythx-report-helper
Advanced tools
Comparing version 1.5.2 to 1.5.3
@@ -41,3 +41,16 @@ "use strict"; | ||
this.indexIssuesByProperty(); | ||
this.processUnsupportedCheatCodeIssues(); | ||
} | ||
processUnsupportedCheatCodeIssues() { | ||
this.unsupportedCheatCodeIssues = []; | ||
for (let i = 0; i < this.meta.length; i++) { | ||
if (!this.meta[i].otherIssues || | ||
!this.meta[i].otherIssues.unsupportedCheatCode) { | ||
continue; | ||
} | ||
if (this.meta[i].otherIssues.unsupportedCheatCode) { | ||
this.unsupportedCheatCodeIssues.push(...this.meta[i].otherIssues.unsupportedCheatCode); | ||
} | ||
} | ||
} | ||
updateIssues(issues, input, filter) { | ||
@@ -44,0 +57,0 @@ this.originalIssues = issues; |
{ | ||
"name": "mythx-report-helper", | ||
"version": "1.5.2", | ||
"version": "1.5.3", | ||
"description": "TS helper to manage mythx reports", | ||
@@ -5,0 +5,0 @@ "main": "./build/src/index.js", |
Sorry, the diff of this file is not supported yet
57198
13
611