10 lines
170 B
C++
10 lines
170 B
C++
|
|
struct assign_t : stmt_accept_t<assign_t>
|
|
{
|
|
assign_t(token_t name, expr_t * value)
|
|
: name(name), value(value) {}
|
|
|
|
const token_t name;
|
|
const expr_t * value;
|
|
};
|