UNPKG

102 BJavaScriptView Raw
1var Identifier = module.exports = function(name) {
2 this.type = 'Identifier';
3 this.name = name;
4};