mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Added comptype
This commit is contained in:
parent
bb12a4ec20
commit
4890303508
27 changed files with 382 additions and 157 deletions
|
@ -2889,6 +2889,10 @@ void BfParser::NextToken(int endIdx, bool outerIsInterpolate)
|
|||
if (SrcPtrHasToken("class"))
|
||||
mToken = BfToken_Class;
|
||||
break;
|
||||
case TOKEN_HASH('c', 'o', 'm', 'p'):
|
||||
if ((!mCompatMode) && (SrcPtrHasToken("comptype")))
|
||||
mToken = BfToken_Comptype;
|
||||
break;
|
||||
case TOKEN_HASH('c', 'o', 'n', 'c'):
|
||||
if ((!mCompatMode) && (SrcPtrHasToken("concrete")))
|
||||
mToken = BfToken_Concrete;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue