Example #1
0
 public NQuerySyntaxClassifier(INQueryClassificationService classificationService, Workspace workspace)
 {
     _classificationService             = classificationService;
     _workspace                         = workspace;
     _workspace.CurrentDocumentChanged += WorkspaceOnCurrentDocumentChanged;
     InvalidateTags();
 }
Example #2
0
 public NQueryQuickInfoSource(IClassificationFormatMap classificationFormatMap, IEditorFormatMap editorFormatMap, INQueryClassificationService classificationService)
 {
     _classificationFormatMap = classificationFormatMap;
     _editorFormatMap         = editorFormatMap;
     _classificationService   = classificationService;
 }