forked from freethenation/node-falafel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
67 lines (58 loc) · 1.84 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
var parse = require('acorn').parse;
var isArray = require('isarray');
var objectKeys = require('object-keys');
var forEach = require('foreach');
module.exports = function (src, opts, fn) {
if (typeof opts === 'function') {
fn = opts;
opts = {};
}
if (src && typeof src === 'object' && src.constructor.name === 'Buffer') {
src = src.toString();
}
else if (src && typeof src === 'object') {
opts = src;
src = opts.source;
delete opts.source;
}
src = src === undefined ? opts.source : src;
if (typeof src !== 'string') src = String(src);
if (opts.parser) parse = opts.parser.parse;
var ast = parse(src, opts);
var result = {
chunks : src.split(''),
toString : function () { return result.chunks.join('') },
inspect : function () { return result.toString() }
};
ast.__proto__.source = function () {
return result.chunks.slice(this.start, this.end).join('');
};
ast.__proto__.updateNode = function (s) {
result.chunks[this.start] = s;
for (var i = this.start + 1; i < this.end; i++) {
result.chunks[i] = '';
}
};
(function walk (node, parent) {
insertHelpers(node, parent);
forEach(objectKeys(node), function (key) {
if (key === 'parent') return;
var child = node[key];
if (isArray(child)) {
forEach(child, function (c) {
if (c && typeof c.type === 'string') {
walk(c, node);
}
});
}
else if (child && typeof child.type === 'string') {
walk(child, node);
}
});
fn(node);
})(ast, undefined);
return result;
};
function insertHelpers (node, parent) {
node.parent = parent;
}