UNPKG

@opra/common

Version:
11 lines (10 loc) 203 B
import { Term } from './term.js'; export class Literal extends Term { constructor(value) { super(); this.value = value; } toString() { return '' + this.value; } }