(&self)
| 664 | /// Check if the TF third-upper-most bit is set. |
| 665 | #[inline(always)] |
| 666 | const fn third_flag(&self) -> bool { |
| 667 | self.0 >> 29 & 0b1 == 1 |
| 668 | } |
| 669 | |
| 670 | /// Check if the [Kind] is "Ident Like", i.e. it is [Kind::Ident], [Kind::AtKeyword], [Kind::Function], [Kind::Hash]. |
| 671 | #[inline(always)] |
no outgoing calls
no test coverage detected