mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 06:39:49 +00:00
25 lines
653 B
C++
25 lines
653 B
C++
#ifndef MWCOMPILER_CONTEXT_H_INCLUDED
|
|
#define MWCOMPILER_CONTEXT_H_INCLUDED
|
|
|
|
#include <components/compiler/context.hpp>
|
|
|
|
namespace SACompiler
|
|
{
|
|
class Context : public Compiler::Context
|
|
{
|
|
public:
|
|
|
|
virtual bool canDeclareLocals() const;
|
|
///< Is the compiler allowed to declare local variables?
|
|
|
|
virtual char getGlobalType (const std::string& name) const;
|
|
///< 'l: long, 's': short, 'f': float, ' ': does not exist.
|
|
|
|
virtual bool isId (const std::string& name) const;
|
|
///< Does \a name match an ID, that can be referenced?
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|