mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-11 09:09:46 +01:00
DisassemblyViewInput
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user