Ejemplo n.º 1
0
 public CompletionItem(string label, CompletionItemKind kind, string detail, MarkupContent documentation, JToken data)
 {
     Label         = label;
     Kind          = kind;
     Detail        = detail;
     Documentation = documentation;
     Data          = data;
 }
 public SignatureInformation(string label, MarkupContent documentation, IList <ParameterInformation> parameters)
 {
     Label         = label;
     Documentation = documentation;
     Parameters    = parameters;
 }
 public SignatureInformation(string label, MarkupContent documentation) : this(label, documentation, null)
 {
 }
 public ParameterInformation(string label, MarkupContent documentation)
 {
     Label         = label;
     Documentation = documentation;
 }
Ejemplo n.º 5
0
 public Hover(MarkupContent contents, Range range)
 {
     Contents = contents;
     Range    = range;
 }
Ejemplo n.º 6
0
 public Hover(MarkupContent contents) : this(contents, new Range())
 {
 }