UNPKG

323 BJavaScriptView Raw
1var VariableDeclarator = module.exports = function(id, init) {
2 this.type = 'VariableDeclarator';
3 this.id = id;
4 this.init = init;
5 this.async = false;
6 if (!this.init) {
7 this.init = null;
8 }
9};
10
11VariableDeclarator.prototype.normalize = function() {
12 if (this.init !== null) {
13 this.init.normalize();
14 }
15};