public TaskListCommentFilterProvider( [Import(typeof(SVsServiceProvider))] System.IServiceProvider serviceProvider, IVsEditorAdaptersFactoryService editorFactory, TaskListManager taskListManager, IOpenDocumentsTracker openDocumentTracker) { _serviceProvider = serviceProvider; _editorFactory = editorFactory; _taskListManager = taskListManager; _openDocumentTracker = openDocumentTracker; }
public LintTaggerProvider( [Import(typeof(SVsServiceProvider))] IServiceProvider serviceProvider, ITextDocumentFactoryService textDocumentFactoryService, ProjectFactory projectFactory, VSLanguageService fsharpVsLanguageService, IOpenDocumentsTracker openDocumentTracker) { _serviceProvider = serviceProvider; _textDocumentFactoryService = textDocumentFactoryService; _projectFactory = projectFactory; _fsharpVsLanguageService = fsharpVsLanguageService; _openDocumentTracker = openDocumentTracker; }
public DepthColorizerTaggerProvider( [Import(typeof(SVsServiceProvider))] IServiceProvider serviceProvider, ITextDocumentFactoryService textDocumentFactoryService, ProjectFactory projectFactory, VSLanguageService vsLanguageService, IOpenDocumentsTracker openDocumentTracker) { _serviceProvider = serviceProvider; _textDocumentFactoryService = textDocumentFactoryService; _projectFactory = projectFactory; _vsLanguageService = vsLanguageService; _openDocumentTracker = openDocumentTracker; }
public RecordStubGeneratorSmartTaggerProvider( [Import(typeof(SVsServiceProvider))] IServiceProvider serviceProvider, ITextDocumentFactoryService textDocumentFactoryService, ITextUndoHistoryRegistry undoHistoryRegistry, ProjectFactory projectFactory, VSLanguageService fsharpVsLanguageService, IOpenDocumentsTracker openDocumentsTracker) { _serviceProvider = serviceProvider; _textDocumentFactoryService = textDocumentFactoryService; _undoHistoryRegistry = undoHistoryRegistry; _projectFactory = projectFactory; _fsharpVsLanguageService = fsharpVsLanguageService; _openDocumentsTracker = openDocumentsTracker; }
public XmlDocCommandFilterProvider( [Import(typeof(SVsServiceProvider))] System.IServiceProvider serviceProvider, ITextDocumentFactoryService textDocumentFactoryService, IVsEditorAdaptersFactoryService editorFactory, ProjectFactory projectFactory, VSLanguageService fsharpVsLanguageService, IOpenDocumentsTracker openDocumentTracker) { _serviceProvider = serviceProvider; _textDocumentFactoryService = textDocumentFactoryService; _editorFactory = editorFactory; _projectFactory = projectFactory; _fsharpVsLanguageService = fsharpVsLanguageService; _openDocumentTracker = openDocumentTracker; }
public OutliningTaggerProvider( [Import(typeof(SVsServiceProvider))] IServiceProvider serviceProvider, ITextDocumentFactoryService textDocumentFactoryService, ITextEditorFactoryService textEditorFactoryService, IProjectionBufferFactoryService projectionBufferFactoryService, IOutliningManagerService outliningManagerService, ProjectFactory projectFactory, VSLanguageService vsLanguageService, IOpenDocumentsTracker openDocumentsTracker) { _serviceProvider = serviceProvider; _textDocumentFactoryService = textDocumentFactoryService; _textEditorFactoryService = textEditorFactoryService; _projectionBufferFactoryService = projectionBufferFactoryService; _outliningManagerService = outliningManagerService; _projectFactory = projectFactory; _vsLanguageService = vsLanguageService; _openDocumentsTracker = openDocumentsTracker; }
public CodeFormattingHookHelper( [Import(typeof(SVsServiceProvider))] IServiceProvider serviceProvider, IVsEditorAdaptersFactoryService adaptersFactory, IEditorOptionsFactoryService editorOptionsFactory, IEditorOperationsFactoryService editorOperationsFactoryService, ITextBufferUndoManagerProvider textBufferUndoManagerProvider, ITextDocumentFactoryService textDocumentFactoryService, ProjectFactory projectFactory, VSLanguageService vsLanguageService, IOpenDocumentsTracker openDocumentTracker) { _serviceProvider = serviceProvider; _adaptersFactory = adaptersFactory; _editorOptionsFactory = editorOptionsFactory; _editorOperationsFactoryService = editorOperationsFactoryService; _textBufferUndoManagerProvider = textBufferUndoManagerProvider; _textDocumentFactoryService = textDocumentFactoryService; _projectFactory = projectFactory; _vsLanguageService = vsLanguageService; _openDocumentTracker = openDocumentTracker; }