UNPKG

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