(key: string)
| 56 | return this.context.globalState.update(key, value); |
| 57 | } |
| 58 | public get(key: string): unknown | undefined { |
| 59 | return this.context.globalState.get(key); |
| 60 | } |
| 61 | |
| 62 | public asAbsolutePath(relativePath: string): string { |
| 63 | return this.context.asAbsolutePath(relativePath); |
no outgoing calls
no test coverage detected