blob: 76b41996bf6995d13974506d83245f42061138fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
*/
#pragma once
#ifndef _SYNEXT_HPP_
#define _SYNEXT_HPP_
#include "../common.hpp" // for LList
#include "synext_decorator.hpp"
#include "synext_macro.hpp"
extern void Expand_Expr(bool is_early, ::AST::Crate& crate, LList<const AST::Module*> modstack, ::std::unique_ptr<AST::ExprNode>& node);
#endif
|