(scopeId?: string)
| 106 | } |
| 107 | |
| 108 | function clearPackageContext(scopeId?: string) { |
| 109 | if (scopeId && packageContextScopeId.value !== scopeId) return |
| 110 | |
| 111 | packageContext.value = null |
| 112 | packageContextScopeId.value = null |
| 113 | } |
| 114 | |
| 115 | function setContextCommands(commands: CommandPaletteContextCommand[], scopeId: string) { |
| 116 | const nextEntries = contextCommands.value.filter(entry => entry.scopeId !== scopeId) |
no outgoing calls