(r rune)
| 1807 | } |
| 1808 | |
| 1809 | func isIdentifierChar(r rune) bool { |
| 1810 | return isUnicodeIdentifierPart(r) |
| 1811 | } |
| 1812 | |
| 1813 | // hasCodeBeforeOnLine checks if there are non-whitespace characters on the same |
| 1814 | // line before the given byte index. Used to determine if a comment is inline. |
no test coverage detected