mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Made callstack aware of outer types vs namespaces. Colorized classview
This commit is contained in:
parent
33edbd18bb
commit
b3cc0b5be4
9 changed files with 662 additions and 376 deletions
|
@ -892,6 +892,14 @@ BfSourceData* BfAstNode::GetSourceData()
|
|||
#endif
|
||||
}
|
||||
|
||||
BfParserData* BfAstNode::GetParserData()
|
||||
{
|
||||
BfSourceData* sourceData = GetSourceData();
|
||||
if (sourceData == NULL)
|
||||
return NULL;
|
||||
return sourceData->ToParserData();
|
||||
}
|
||||
|
||||
BfParser* BfAstNode::GetParser()
|
||||
{
|
||||
BfSourceData* sourceData = GetSourceData();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue