public SaveSourceMap(ISourceMapStorage map, IDocumentTabService tabService)
 {
     this.map        = map;
     this.tabService = tabService;
 }
예제 #2
0
 public OpenSourceMapFolder(ISourceMapStorage sourcemap) => this.sourcemap = sourcemap;
 public DecompilerOutputDecorator(IDecompilerOutput implementation, ISourceMapStorage sourceMap)
 {
     this.implementation = implementation;
     this.sourceMap      = sourceMap;
 }
예제 #4
0
 public SourceMapDecompilerCreator(ISourceMapStorage sourceMapStorage)
 {
     this.sourceMapStorage = sourceMapStorage;
 }
예제 #5
0
 public RenameDisplayed(ISourceMapStorage sourceMapStorage)
 {
     this.sourceMapStorage = sourceMapStorage;
 }
 public SourceMapDecompilerDecorator(IDecompiler implementation, ISourceMapStorage sourceMap)
 {
     this.implementation = implementation;
     this.sourceMap      = sourceMap;
 }
예제 #7
0
 public RenameDisplayed(ISourceMapStorage sourceMapStorage, IDecompilerService decompilerService)
 {
     this.sourceMapStorage  = sourceMapStorage;
     this.decompilerService = decompilerService;
 }