C# Class Microsoft.R.Support.RD.Parser.RdParser

Parser of the RD (R Documentation) file format. Primary usage of the parser is the extraction of information on functions and their parameters so we can show signature completion and quick info in the VS editor.
Afficher le fichier Open project: Microsoft/RTVS

Méthodes publiques

Méthode Description
GetFunctionInfos ( string rdHelpData ) : IReadOnlyList

Given RD data and function name parses the data and creates structured information about the function. Method returns multiple functions since RD data often provides information on several functions so in order to avoid processing same data multiple times parser extracts information on all related functions.

Private Methods

Méthode Description
CreateFunctionInfo ( string functionName, string functionDescription, string returnValue, bool isInternal ) : FunctionInfo
ParseFunctions ( Microsoft.R.Support.RD.Parser.RdParseContext context ) : IReadOnlyList

Method Details

GetFunctionInfos() public static méthode

Given RD data and function name parses the data and creates structured information about the function. Method returns multiple functions since RD data often provides information on several functions so in order to avoid processing same data multiple times parser extracts information on all related functions.
public static GetFunctionInfos ( string rdHelpData ) : IReadOnlyList
rdHelpData string
Résultat IReadOnlyList