class documentation

class ParsedTranslationUnit(object):

View In Hierarchy

Result of parsing a translation unit.

Contains parsed functions and diagnostics about the parsing.

Method __init__ Undocumented
Method __repr__ Undocumented
Property diagnostics Errors and warnings of the parsing. Empty if successful.
Property functions Parsed functions as Function. Empty or incomplete on parsing error.
Property unknown_types Names of unknown types if any. Unknown types are parsed as int.
Instance Variable _tu Undocumented
def __init__(self, _tu_data):

Undocumented

Parameters
_tu_data:_reven_api.ParsedTranslationUnitUndocumented
def __repr__(self):

Undocumented

Returns
strUndocumented
@property
diagnostics: _List[str] =

Errors and warnings of the parsing. Empty if successful.

@property
functions: _List[Function] =

Parsed functions as Function. Empty or incomplete on parsing error.

@property
unknown_types: _List[str] =

Names of unknown types if any. Unknown types are parsed as int.

_tu =

Undocumented