Example #1
0
 public TypeAndMemberDropdownBars(LanguageService languageService, GlyphProvider glyphProvider)
     : base(languageService)
 {
     this.scTypeAndMemberDropdownBars = new Cci.TypeAndMemberDropdownBars(languageService.scLanguageService);
     this.glyphProvider = glyphProvider;
 }
Example #2
0
 public Declarations(Cci.Declarations scDeclarations, GlyphProvider glyphProvider)
 {
     this.scDeclarations = scDeclarations;
     this.glyphProvider  = glyphProvider;
 }
Example #3
0
        public LanguagePreferences vsLanguagePreferences; //Set by Init

        public LanguageService(Cci.LanguageService scLanguageService, ImageList completionImages, GlyphProvider glyphProvider)
            : base(completionImages)
        {
            this.scLanguageService = scLanguageService;
            this.glyphProvider     = glyphProvider;
        }
Example #4
0
 public CodeWindowManager(LanguageService service, IVsCodeWindow codeWindow, Source source, GlyphProvider glyphProvider)
     : base(service, codeWindow, source)
 {
     this.glyphProvider = glyphProvider;
 }
Example #5
0
 public AuthoringScope(Cci.AuthoringScope authoringScope, GlyphProvider glyphProvider)
 {
     this.scAuthoringScope = authoringScope;
     this.glyphProvider    = glyphProvider;
 }
Example #6
0
 public TypeAndMemberDropdownBars(LanguageService languageService, GlyphProvider glyphProvider) 
   : base(languageService){
   this.scTypeAndMemberDropdownBars = new System.Compiler.TypeAndMemberDropdownBars(languageService.scLanguageService);
   this.glyphProvider = glyphProvider;
 }
Example #7
0
		public LanguageService(System.Compiler.LanguageService scLanguageService, GlyphProvider glyphProvider)
      : base(){
      this.scLanguageService = scLanguageService;
      this.glyphProvider = glyphProvider;
      this.vsScanner = new Microsoft.VisualStudio.IntegrationHelper.Scanner(this.scLanguageService.GetScanner());
      this.scLanguageService.GetCompilationFor = new System.Compiler.LanguageService.GetCompilation(this.GetCompilationFor);
    }
Example #8
0
 public Declarations(System.Compiler.Declarations scDeclarations, GlyphProvider glyphProvider){
   this.scDeclarations = scDeclarations;
   this.glyphProvider = glyphProvider;
 }
Example #9
0
 public AuthoringScope(System.Compiler.AuthoringScope authoringScope, GlyphProvider glyphProvider){
   this.scAuthoringScope = authoringScope;
   this.glyphProvider = glyphProvider;
 }
Example #10
0
 public CodeWindowManager(LanguageService service, IVsCodeWindow codeWindow, Source source, GlyphProvider glyphProvider)
   : base(service, codeWindow, source){
   this.glyphProvider = glyphProvider;
 }