2010-06-28 10:32:08 +00:00
|
|
|
|
|
|
|
#include "context.hpp"
|
|
|
|
|
|
|
|
namespace SACompiler
|
|
|
|
{
|
|
|
|
bool Context::canDeclareLocals() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2010-07-04 10:29:28 +00:00
|
|
|
|
|
|
|
char Context::getGlobalType (const std::string& name) const
|
|
|
|
{
|
|
|
|
return ' ';
|
|
|
|
}
|
2010-06-28 10:32:08 +00:00
|
|
|
}
|
|
|
|
|