(node: Node, scriptSetup = true)
| 133 | } |
| 134 | |
| 135 | getString(node: Node, scriptSetup = true): string { |
| 136 | const block = scriptSetup |
| 137 | ? this.descriptor.scriptSetup! |
| 138 | : this.descriptor.script! |
| 139 | return block.content.slice(node.start!, node.end!) |
| 140 | } |
| 141 | |
| 142 | warn(msg: string, node: Node, scope?: TypeScope): void { |
| 143 | warn(generateError(msg, node, this, scope)) |
no outgoing calls
no test coverage detected