isIdentifierStart checks if a rune can start an identifier
(r rune)
| 729 | |
| 730 | // isIdentifierStart checks if a rune can start an identifier |
| 731 | func isIdentifierStart(r rune) bool { |
| 732 | return isUnicodeIdentifierStart(r) |
| 733 | } |
| 734 | |
| 735 | // readIdentifier reads an identifier (e.g. foo or foo.bar) |
| 736 | func (t *Tokenizer) readIdentifier() (models.Token, error) { |
no test coverage detected