mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 13:53:51 +00:00
21 lines
319 B
C++
21 lines
319 B
C++
|
|
#include "context.hpp"
|
|
|
|
namespace SACompiler
|
|
{
|
|
bool Context::canDeclareLocals() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
char Context::getGlobalType (const std::string& name) const
|
|
{
|
|
return ' ';
|
|
}
|
|
|
|
bool Context::isId (const std::string& name) const
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|