libmya 0.1.0
Library to parse Mya language.
|
A struct representing a dynamic stack. More...
#include <aststack.h>
Data Fields | |
ast_node_t * | values |
Array of values on the stack. | |
unsigned int | length |
Number of elements on the stack. | |
unsigned int | _size |
Current number of elements that fits on the stack. | |
A struct representing a dynamic stack.
Each value on the stack is a ast_node_t
struct.
Definition at line 11 of file aststack.h.
unsigned int stack::_size |
Current number of elements that fits on the stack.
Definition at line 15 of file aststack.h.
unsigned int stack::length |
Number of elements on the stack.
Definition at line 14 of file aststack.h.
ast_node_t* stack::values |
Array of values on the stack.
Definition at line 13 of file aststack.h.