Created
October 24, 2015 19:06
-
-
Save avh4/d5ed04ae810ac1ad2cab to your computer and use it in GitHub Desktop.
Find module dependencies in a haskell project
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs'); | |
var map = {}; | |
var seen = {}; | |
function go(module, indent) { | |
if (!!seen[module]) return; | |
console.log(indent + module); | |
seen[module] = true; | |
var file = 'src-parser/' + module.replace(/\./g, '/') + '.hs'; | |
fs.readFile(file, 'utf8', function(err, contents) { | |
if (err) { | |
return; | |
} | |
var next; | |
var re = /^import (qualified )?([^ \n]+)/mg; | |
while (next = re.exec(contents)) { | |
var dep = next[2]; | |
go(dep, indent + ""); | |
} | |
}); | |
} | |
go('Parse.Parse', ""); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment