public SaveSourceMap(ISourceMapStorage map, IDocumentTabService tabService) { this.map = map; this.tabService = tabService; }
public OpenSourceMapFolder(ISourceMapStorage sourcemap) => this.sourcemap = sourcemap;
public DecompilerOutputDecorator(IDecompilerOutput implementation, ISourceMapStorage sourceMap) { this.implementation = implementation; this.sourceMap = sourceMap; }
public SourceMapDecompilerCreator(ISourceMapStorage sourceMapStorage) { this.sourceMapStorage = sourceMapStorage; }
public RenameDisplayed(ISourceMapStorage sourceMapStorage) { this.sourceMapStorage = sourceMapStorage; }
public SourceMapDecompilerDecorator(IDecompiler implementation, ISourceMapStorage sourceMap) { this.implementation = implementation; this.sourceMap = sourceMap; }
public RenameDisplayed(ISourceMapStorage sourceMapStorage, IDecompilerService decompilerService) { this.sourceMapStorage = sourceMapStorage; this.decompilerService = decompilerService; }