UNPKG

247 BJavaScriptView Raw
1var Identifier = module.exports = function(name) {
2 this.type = 'Identifier';
3 this.name = name;
4 this.async = false;
5};
6
7Identifier.prototype.normalize = function () {
8};
9
10Identifier.prototype.transform = function (place) {
11 return place;
12};