@opra/common
Version:
Opra common package
15 lines (14 loc) • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Literal = void 0;
const term_js_1 = require("./term.js");
class Literal extends term_js_1.Term {
constructor(value) {
super();
this.value = value;
}
toString() {
return '' + this.value;
}
}
exports.Literal = Literal;