You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
js-analyzer/src/ast/processors/add-variable-declarator-kin...

12 lines
189 B
JavaScript

'use strict';
module.exports = function () {
return {
onEnter: function onEnter(node) {
if (node.type === "VariableDeclarator") {
node._kind = node._parent.kind;
}
}
};
};