/* * Return the Node's _tbl_ member. The return value is an * Array holding names of variables. */ static VALUE node_tbl(VALUE self) { NODE * n; Data_Get_Struct(self, NODE, n); return variable_names(n->nd_tbl); }