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