DisassemblyViewInput

This commit is contained in:
BeniBenj
2023-12-10 12:19:28 +01:00
parent 15a273248e
commit 787dfdc6b4

View File

@@ -5,6 +5,8 @@
import { EditorInput } from 'vs/workbench/common/editor/editorInput';
import { localize } from 'vs/nls';
import { ThemeIcon } from 'vs/base/common/themables';
import { Codicon } from 'vs/base/common/codicons';
export class DisassemblyViewInput extends EditorInput {
@@ -29,6 +31,10 @@ export class DisassemblyViewInput extends EditorInput {
return localize('disassemblyInputName', "Disassembly");
}
override getIcon(): ThemeIcon {
return Codicon.debug;
}
override matches(other: unknown): boolean {
return other instanceof DisassemblyViewInput;
}