()
| 1464 | } |
| 1465 | |
| 1466 | private isExpansionFormStart(): boolean { |
| 1467 | if (this._cursor.peek() !== chars.$LBRACE) { |
| 1468 | return false; |
| 1469 | } |
| 1470 | const start = this._cursor.clone(); |
| 1471 | const isInterpolation = this._attemptStr(INTERPOLATION.start); |
| 1472 | this._cursor = start; |
| 1473 | return !isInterpolation; |
| 1474 | } |
| 1475 | } |
| 1476 | |
| 1477 | function isNotWhitespace(code: number): boolean { |
no test coverage detected