()
| 958 | } |
| 959 | |
| 960 | scanVariable() { |
| 961 | this.text = '$'; |
| 962 | this.text += this.scanUntil((ch) => !isIdentifierPart(ch)); |
| 963 | return this.kind = Kind.Variable; |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * Returns the zero-based line/column from the given offset |
no test coverage detected