mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2025-01-22 21:35:29 +00:00
12 lines
228 B
C++
12 lines
228 B
C++
#include <peglib.h>
|
|
|
|
enum AstType
|
|
{
|
|
Statements, While, If, FunctionCall, Assignment, Condition, BinExpresion,
|
|
Identifier, Number, Boolean, Function
|
|
};
|
|
|
|
peglib::peg& get_parser();
|
|
|
|
// vim: et ts=4 sw=4 cin cino={1s ff=unix
|