remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/libs/remix-astwalker
aniket-engg 08bb4ba6f6 update for remix-analyzer tests 4 years ago
..
src lint, build, test working for remix-lib, remix-astwalker 4 years ago
tests lint, build, test working for remix-lib, remix-astwalker 4 years ago
.eslintrc remix-astwalker linting done 4 years ago
.gitignore Moved files to libs/ 5 years ago
.npmignore Moved files to libs/ 5 years ago
README.md Moved files to libs/ 5 years ago
package-lock.json Moved files to libs/ 5 years ago
package.json build working for remix-analyzer 4 years ago
tsconfig.json update for remix-analyzer tests 4 years ago
tsconfig.lib.json updates for analyzer 4 years ago

README.md

Remix ASTwalker

remix-astwalker module walks through solidity AST and spits out AST nodes.

Example

import { AstWalker } from "remix-astwalker";

const astWalker = new AstWalker();
astWalker.on("node", node => {
  if (node.nodeType === "ContractDefinition") {
    checkContract(st, node);
  }

  if (node.nodeType === "PragmaDirective") {
    checkProgramDirective(st, node);
  }
});

For more examples see tests.