mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
36 lines
783 B
C++
36 lines
783 B
C++
#ifndef POLSERVER_VARIABLE_H
|
|
#define POLSERVER_VARIABLE_H
|
|
|
|
#include <string>
|
|
|
|
#include "bscript/compiler/model/SimpleTypes.h"
|
|
#include "bscript/compiler/model/VariableScope.h"
|
|
#include "bscript/compiler/model/WarnOn.h"
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
class SourceLocation;
|
|
|
|
class Variable
|
|
{
|
|
public:
|
|
Variable( VariableScope, std::string name, BlockDepth, VariableIndex, WarnOn,
|
|
const SourceLocation& source_location );
|
|
|
|
void mark_used();
|
|
[[nodiscard]] bool was_used() const;
|
|
|
|
const VariableScope scope;
|
|
const std::string name;
|
|
const BlockDepth block_depth;
|
|
const VariableIndex index;
|
|
const WarnOn warn_on;
|
|
const SourceLocation& source_location;
|
|
|
|
private:
|
|
bool used;
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_SCRIPTVARIABLE_H
|