C# 클래스 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.
파일 보기 프로젝트 열기: Microsoft/RTVS

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
CreateFunctionInfo ( string functionName, string functionDescription, string returnValue, bool isInternal ) : FunctionInfo
ParseFunctions ( Microsoft.R.Support.RD.Parser.RdParseContext context ) : IReadOnlyList

메소드 상세

GetFunctionInfos() 공개 정적인 메소드

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
리턴 IReadOnlyList