From 727cf75d8c82ea69cb14b1f765a8b0fbb62c8331 Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Wed, 5 Feb 2020 15:31:15 +0530 Subject: [PATCH] linting fix --- remix-debug/src/solidity-decoder/internalCallTree.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-debug/src/solidity-decoder/internalCallTree.js b/remix-debug/src/solidity-decoder/internalCallTree.js index f156277088..f8aaaa5a09 100644 --- a/remix-debug/src/solidity-decoder/internalCallTree.js +++ b/remix-debug/src/solidity-decoder/internalCallTree.js @@ -199,7 +199,7 @@ function includeVariableDeclaration (tree, step, sourceLocation, scopeId, newLoc // so, either this is the direct value, or the offset in memory. That depends on the type. if (!error) { tree.solidityProxy.contractNameAt(step, (error, contractName) => { // cached - if (!error && variableDeclaration.attributes.name != '') { + if (!error && variableDeclaration.attributes.name !== '') { var states = tree.solidityProxy.extractStatesDefinitions() var location = typesUtil.extractLocationFromAstVariable(variableDeclaration) location = location === 'default' ? 'storage' : location