mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
30 lines
919 B
C#
30 lines
919 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Microsoft.VisualStudio;
|
|
using Microsoft.VisualStudio.Package;
|
|
using Microsoft.VisualStudio.TextManager.Interop;
|
|
using Microsoft.VisualStudio.OLE.Interop;
|
|
|
|
namespace XSharp.VS {
|
|
internal class Parser : AuthoringScope {
|
|
public override string GetDataTipText(int line, int col, out TextSpan span) {
|
|
span = new TextSpan();
|
|
return null;
|
|
}
|
|
|
|
public override Declarations GetDeclarations(IVsTextView view, int line, int col, TokenInfo info, ParseReason reason) {
|
|
return null;
|
|
}
|
|
|
|
public override string Goto(VSConstants.VSStd97CmdID cmd, IVsTextView textView, int line, int col, out TextSpan span) {
|
|
span = new TextSpan();
|
|
return null;
|
|
}
|
|
|
|
public override Methods GetMethods(int line, int col, string name) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|