node normalized

useEther_5013
aniket-engg 4 years ago committed by Aniket
parent e555d64638
commit 80ac4d0b4a
  1. 24
      libs/remix-astwalker/src/astWalker.ts

@ -60,11 +60,23 @@ export class AstWalker extends EventEmitter {
} }
normalizeNodes(nodes: AstNode[]): AstNode[] { normalizeNodes(nodes: AstNode[]): AstNode[] {
// TODO: Traverse through nodes to check: // Remove null, undefined and empty elements if any
// 1. If value exists for element nodes = nodes.filter(e => e)
// 2. If any element in nodes is array, extract its members in nodes and delete it
// 3. duplicate nodes using id field // If any element in nodes is array, extract its members
return nodes let objNodes = []
nodes.forEach(x => {
if (Array.isArray(x)) objNodes.push(...x)
else objNodes.push(x)
});
// Filter duplicate nodes using id field
let normalizedNodes = []
objNodes.forEach((element, index) => {
const firstIndex = normalizedNodes.findIndex(e => e.id === element.id)
if(firstIndex == -1) normalizedNodes.push(element)
})
return normalizedNodes
} }
getASTNodeChildren(ast: AstNode): AstNode[] { getASTNodeChildren(ast: AstNode): AstNode[] {
@ -140,7 +152,7 @@ export class AstWalker extends EventEmitter {
nodes.push(ast.endExpression) nodes.push(ast.endExpression)
} }
} }
return nodes return this.normalizeNodes(nodes)
} }
// eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/explicit-module-boundary-types // eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/explicit-module-boundary-types

Loading…
Cancel
Save