mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
20 lines
364 B
C++
20 lines
364 B
C++
#pragma once
|
|
|
|
#include <tao/pegtl.hpp>
|
|
#include <ast.hpp>
|
|
|
|
namespace broma {
|
|
template <typename Rule>
|
|
struct run_action {};
|
|
|
|
struct ScratchData {
|
|
Class wip_class;
|
|
Field wip_field;
|
|
PlatformNumber wip_bind;
|
|
Platform wip_bind_platform;
|
|
Type wip_type;
|
|
FunctionBegin wip_fn_begin;
|
|
|
|
std::vector<tao::pegtl::parse_error> errors;
|
|
};
|
|
} // namespace broma
|