public static SymbolInformationOrDocumentSymbol Create(SymbolInformation value) => value;
Exemple #2
0
 public SymbolInformationOrDocumentSymbol(DocumentSymbol documentSymbol)
 {
     _documentSymbol    = documentSymbol;
     _symbolInformation = default;
 }
 public SymbolInformationOrDocumentSymbol(SymbolInformation symbolInformation)
 {
     DocumentSymbol    = default;
     SymbolInformation = symbolInformation;
 }
Exemple #4
0
 public static SymbolInformationOrDocumentSymbol Create(SymbolInformation value)
 {
     return(value);
 }