UNPKG

sol-explore

Version:

Traversal functions for solidity-parser generated AST

11 lines (9 loc) 241 B
/** *@fileoverview options that a visitor may include in their enter() or leave() functions to alter normal traversal behavior *@author Raghav Dua */ 'use strict'; module.exports = { STOP_TRAVERSAL: 'stop', SKIP_NODES_BELOW: 'skip' };