()
| 399 | } |
| 400 | |
| 401 | basename(): string { |
| 402 | const base = basename(this.id); |
| 403 | const extension = extname(this.id); |
| 404 | |
| 405 | return makeLegal(extension ? base.slice(0, -extension.length) : base); |
| 406 | } |
| 407 | |
| 408 | bindReferences(): void { |
| 409 | this.ast!.bind(); |
no test coverage detected