public ImplementsCodeLensRange(IMethod method, ScriptFile script, CodeLensSourceType sourceType, DocRange range) : base(sourceType, range, "ostw.showReferences")
 {
     Method  = method;
     _script = script;
 }
 public ReferenceCodeLensRange(ICallable callable, ParseInfo parseInfo, CodeLensSourceType sourceType, DocRange range) : base(sourceType, range, "ostw.showReferences")
 {
     Callable   = callable;
     _parseInfo = parseInfo;
 }
示例#3
0
 public ReferenceCodeLensRange(object declarationKey, ParseInfo parseInfo, CodeLensSourceType sourceType, DocRange range) : base(sourceType, range)
 {
     DeclarationKey = declarationKey;
     _parseInfo     = parseInfo;
 }
 public CodeLensRange(CodeLensSourceType sourceType, DocRange range, string command)
 {
     SourceType = sourceType;
     Range      = range;
     Command    = command;
 }
示例#5
0
 public CodeLensRange(CodeLensSourceType sourceType, DocRange range)
 {
     SourceType = sourceType;
     Range      = range;
 }