Skip to content

Instantly share code, notes, and snippets.

@avh4
Created October 24, 2015 19:06
Show Gist options
  • Save avh4/d5ed04ae810ac1ad2cab to your computer and use it in GitHub Desktop.
Save avh4/d5ed04ae810ac1ad2cab to your computer and use it in GitHub Desktop.
Find module dependencies in a haskell project
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