You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
569 B
25 lines
569 B
2 years ago
|
'use strict';
|
||
|
exports.__esModule = true;
|
||
|
|
||
|
exports.default = function visit(node, keys, visitorSpec) {
|
||
|
if (!node || !keys) {
|
||
|
return;
|
||
|
}
|
||
|
const type = node.type;
|
||
|
if (typeof visitorSpec[type] === 'function') {
|
||
|
visitorSpec[type](node);
|
||
|
}
|
||
|
const childFields = keys[type];
|
||
|
if (!childFields) {
|
||
|
return;
|
||
|
}
|
||
|
childFields.forEach((fieldName) => {
|
||
|
[].concat(node[fieldName]).forEach((item) => {
|
||
|
visit(item, keys, visitorSpec);
|
||
|
});
|
||
|
});
|
||
|
if (typeof visitorSpec[`${type}:Exit`] === 'function') {
|
||
|
visitorSpec[`${type}:Exit`](node);
|
||
|
}
|
||
|
};
|