* Wraps the expression in parenthesis such that inserted * span comments become attached to the proper node.
()
| 82 | * span comments become attached to the proper node. |
| 83 | */ |
| 84 | wrapForTypeChecker(): this { |
| 85 | this.source = `(${this.print()})`; |
| 86 | this.spanComment = this.identifierComment = this.ignoreComment = null; |
| 87 | return this; |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Tags the expression with an identifier. |
no test coverage detected