()
| 1479 | } |
| 1480 | |
| 1481 | private isExpansionFormStart(): boolean { |
| 1482 | if (this._cursor.peek() !== chars.$LBRACE) { |
| 1483 | return false; |
| 1484 | } |
| 1485 | const start = this._cursor.clone(); |
| 1486 | const isInterpolation = this._attemptStr(INTERPOLATION.start); |
| 1487 | this._cursor = start; |
| 1488 | return !isInterpolation; |
| 1489 | } |
| 1490 | } |
| 1491 | |
| 1492 | function isNotWhitespace(code: number): boolean { |
no test coverage detected