(value: Box<[u8]>, range: TextRange)
| 44 | } |
| 45 | |
| 46 | pub(super) const fn new_bytes(value: Box<[u8]>, range: TextRange) -> Self { |
| 47 | Self { |
| 48 | range, |
| 49 | value: ConstantLiteral::Bytes(value), |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | pub(super) const fn new_bool(value: bool, range: TextRange) -> Self { |
| 54 | Self { |
no test coverage detected