@opra/common
Version:
Opra common package
12 lines (11 loc) • 323 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NullLiteral = void 0;
const literal_js_1 = require("../abstract/literal.js");
class NullLiteral extends literal_js_1.Literal {
constructor() {
super(null);
this.value = null;
}
}
exports.NullLiteral = NullLiteral;