Commit 0ef31dfb authored by Michael Fröwis's avatar Michael Fröwis Committed by chriseth

Static Analysis: use astWalker from ethereum-remix

parent b8e2db29
'use strict'
/**
* Crawl the given AST through the function walk(ast, callback)
*/
function AstWalker () {
}
/**
* visit all the AST nodes
*
* @param {Object} ast - AST node
* @param {Object or Function} callback - if (Function) the function will be called for every node.
* - if (Object) callback[<Node Type>] will be called for
* every node of type <Node Type>. callback["*"] will be called fo all other nodes.
* in each case, if the callback returns false it does not descend into children.
* If no callback for the current type, children are visited.
*/
AstWalker.prototype.walk = function (ast, callback) {
if (callback instanceof Function) {
callback = {'*': callback}
}
if (!('*' in callback)) {
callback['*'] = function () { return true }
}
if (manageCallBack(ast, callback) && ast.children && ast.children.length > 0) {
for (var k in ast.children) {
var child = ast.children[k]
this.walk(child, callback)
}
}
}
/**
* walk the given @astList
*
* @param {Object} sourcesList - sources list (containing root AST node)
* @param {Function} - callback used by AstWalker to compute response
*/
AstWalker.prototype.walkAstList = function (sourcesList, callback) {
var walker = new AstWalker()
for (var k in sourcesList) {
walker.walk(sourcesList[k].AST, callback)
}
}
function manageCallBack (node, callback) {
if (node.name in callback) {
return callback[node.name](node)
} else {
return callback['*'](node)
}
}
module.exports = AstWalker
var common = require('./staticAnalysisCommon') var common = require('./staticAnalysisCommon')
// var AstWalker = require('ethereum-remix').util.AstWalker var AstWalker = require('ethereum-remix').util.AstWalker
var AstWalker = require('../astWalker')
function abstractAstView () { function abstractAstView () {
this.contracts = null this.contracts = null
......
'use strict' 'use strict'
// var AstWalker = require('ethereum-remix').util.AstWalker var AstWalker = require('ethereum-remix').util.AstWalker
var AstWalker = require('./astWalker')
var list = require('./modules/list') var list = require('./modules/list')
function staticAnalysisRunner () { function staticAnalysisRunner () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment