/* * call-seq: * node.nd_line => Numeric * * Returns the line number the node is associated with. */ static VALUE node_nd_line(VALUE self) { NODE * n; Data_Get_Struct(self, NODE, n); return LONG2NUM(nd_line(n)); }