mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
14 lines
198 B
C++
14 lines
198 B
C++
![]() |
#include "BfVarDeclChecker.h"
|
||
|
|
||
|
USING_NS_BF;
|
||
|
|
||
|
BfVarDeclChecker::BfVarDeclChecker()
|
||
|
{
|
||
|
mHasVarDecl = false;
|
||
|
}
|
||
|
|
||
|
void BfVarDeclChecker::Visit(BfVariableDeclaration * binOpExpr)
|
||
|
{
|
||
|
mHasVarDecl = true;
|
||
|
}
|