(value)
| 551 | |
| 552 | export class LiteralString extends Expression { |
| 553 | constructor(value) { |
| 554 | super(); |
| 555 | |
| 556 | this.value = value; |
| 557 | } |
| 558 | |
| 559 | evaluate(scope, lookupFunctions) { |
| 560 | return this.value; |
nothing calls this directly
no outgoing calls
no test coverage detected