(args)
| 49 | } |
| 50 | |
| 51 | async exec (args) { |
| 52 | switch (args.length) { |
| 53 | case 0: |
| 54 | return this.list() |
| 55 | case 1: |
| 56 | return this.change(args) |
| 57 | default: |
| 58 | throw this.usageError() |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | async execWorkspaces (args) { |
| 63 | switch (args.length) { |
nothing calls this directly
no test coverage detected