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