mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
21 lines
427 B
C++
21 lines
427 B
C++
#ifndef POLSERVER_AVAILABLEUSERFUNCTION_H
|
|
#define POLSERVER_AVAILABLEUSERFUNCTION_H
|
|
|
|
#include "bscript/compiler/file/SourceLocation.h"
|
|
|
|
namespace antlr4
|
|
{
|
|
class ParserRuleContext;
|
|
}
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
struct AvailableUserFunction
|
|
{
|
|
SourceLocation source_location;
|
|
antlr4::ParserRuleContext* const parse_rule_context;
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_AVAILABLEUSERFUNCTION_H
|