(parser)
| 834 | this.value = value; |
| 835 | } |
| 836 | static parse(parser) { |
| 837 | var booleanLiteral = parser.matchToken("true") || parser.matchToken("false"); |
| 838 | if (!booleanLiteral) return; |
| 839 | const value = booleanLiteral.value === "true"; |
| 840 | return new _BooleanLiteral(value); |
| 841 | } |
| 842 | evalStatically() { |
| 843 | return this.value; |
| 844 | } |
nothing calls this directly
no test coverage detected