UNPKG

170 BJavaScriptView Raw
1var VariableDeclaration = module.exports = function(declarations, kind) {
2 this.type = 'VariableDeclaration';
3 this.declarations = declarations;
4 this.kind = kind;
5};