コード例 #1
0
ファイル: Helpers.cs プロジェクト: Plankankul/SpecSharp
 public override Microsoft.VisualStudio.Package.Declarations GetDeclarations(IVsTextView view, int line, int col, TokenInfo info)
 {
     Cci.Declarations scDeclarations = this.scAuthoringScope.GetDeclarations(line, col, Cci.ParseReason.MemberSelect);
     return(new Declarations(scDeclarations, this.glyphProvider));
 }
コード例 #2
0
ファイル: Helpers.cs プロジェクト: Plankankul/SpecSharp
 public Declarations(Cci.Declarations scDeclarations, GlyphProvider glyphProvider)
 {
     this.scDeclarations = scDeclarations;
     this.glyphProvider  = glyphProvider;
 }