()
| 280 | return !this.#inTemplate() || this.#templateMode === "command"; |
| 281 | } |
| 282 | #possiblePrecedingSymbol() { |
| 283 | return this.#isAlpha(this.#lastToken) || this.#isNumeric(this.#lastToken) || this.#lastToken === ")" || this.#lastToken === '"' || this.#lastToken === "'" || this.#lastToken === "`" || this.#lastToken === "}" || this.#lastToken === "]"; |
| 284 | } |
| 285 | #isValidSingleQuoteStringStart() { |
| 286 | if (this.#tokens.length > 0) { |
| 287 | var prev = this.#tokens.at(-1); |
no test coverage detected