()
| 1446 | } |
| 1447 | |
| 1448 | private isExpansionFormStart(): boolean { |
| 1449 | if (this._cursor.peek() !== chars.$LBRACE) { |
| 1450 | return false; |
| 1451 | } |
| 1452 | const start = this._cursor.clone(); |
| 1453 | const isInterpolation = this._attemptStr(INTERPOLATION.start); |
| 1454 | this._cursor = start; |
| 1455 | return !isInterpolation; |
| 1456 | } |
| 1457 | } |
| 1458 | |
| 1459 | function isNotWhitespace(code: number): boolean { |
no test coverage detected