(parser)
| 828 | this.value = value; |
| 829 | } |
| 830 | static parse(parser) { |
| 831 | var booleanLiteral = parser.matchToken("true") || parser.matchToken("false"); |
| 832 | if (!booleanLiteral) return; |
| 833 | const value = booleanLiteral.value === "true"; |
| 834 | return new _BooleanLiteral(value); |
| 835 | } |
| 836 | evalStatically() { |
| 837 | return this.value; |
| 838 | } |
nothing calls this directly
no test coverage detected