1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
using System;
using System.Collections.Generic;
using Microsoft.VisualStudio;
using Microsoft.VisualStudio.TextManager.Interop;
using Microsoft.VisualStudio.Package;
namespace Demo
{
public class AuthoringScope : Microsoft.VisualStudio.Package.AuthoringScope
{
public AuthoringScope(object parseResult)
{
this.parseResult = parseResult;
// how should this be set?
this.resolver = new Resolver();
}
object parseResult;
IASTResolver resolver;
// ParseReason.QuickInfo
public override string GetDataTipText(int line, int col, out TextSpan span)
{
span = new TextSpan();
return null;
}
// ParseReason.CompleteWord
// ParseReason.DisplayMemberList
// ParseReason.MemberSelect
// ParseReason.MemberSelectAndHilightBraces
public override Microsoft.VisualStudio.Package.Declarations GetDeclarations(IVsTextView view, int line, int col, TokenInfo info, ParseReason reason)
{
IList<Declaration> declarations;
switch (reason)
{
case ParseReason.CompleteWord:
declarations = resolver.FindCompletions(parseResult, line, col);
break;
case ParseReason.DisplayMemberList:
case ParseReason.MemberSelect:
case ParseReason.MemberSelectAndHighlightBraces:
declarations = resolver.FindMembers(parseResult, line, col);
break;
default:
throw new ArgumentException("reason");
}
return new Declarations(declarations);
}
// ParseReason.GetMethods
public override Microsoft.VisualStudio.Package.Methods GetMethods(int line, int col, string name)
{
return new Methods(resolver.FindMethods(parseResult, line, col, name));
}
// ParseReason.Goto
public override string Goto(VSConstants.VSStd97CmdID cmd, IVsTextView textView, int line, int col, out TextSpan span)
{
span = new TextSpan();
return null;
}
}
}
|