Class: Node::CONST

Inherits:
Node show all
Defined in:
ext/nodeinfo.c,
ext/cached/ruby-1.6.3/nodeinfo.c,
ext/cached/ruby-1.6.4/nodeinfo.c,
ext/cached/ruby-1.6.5/nodeinfo.c,
ext/cached/ruby-1.6.7/nodeinfo.c,
ext/cached/ruby-1.6.8/nodeinfo.c,
ext/cached/ruby-1.8.0/nodeinfo.c,
ext/cached/ruby-1.8.1/nodeinfo.c,
ext/cached/ruby-1.8.2/nodeinfo.c,
ext/cached/ruby-1.8.3/nodeinfo.c,
ext/cached/ruby-1.8.4/nodeinfo.c,
ext/cached/ruby-1.8.5/nodeinfo.c,
ext/cached/ruby-1.8.6/nodeinfo.c

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#[], #_dump, _load, #address, #as_code, #as_expression, #as_paren_expression, #bytecode_compile, compile_string, define_code, define_expression, #eval, #flags, #inspect, #members, #nd_file, #nd_line, #nd_type, #pretty_print, #tree

Class Method Details

.membersObject

Return an array of strings containing the names of the node class’s members.



2076
2077
2078
2079
# File 'ext/nodeinfo.c', line 2076

VALUE node_s_members(VALUE klass)
{
  return rb_iv_get(klass, "__member__");
}

Instance Method Details

#vidObject

Return the Node’s vid member. The return type is a Symbol.



2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
# File 'ext/nodeinfo.c', line 2058

static VALUE node_vid(VALUE self)
{
  NODE * n;
  Data_Get_Struct(self, NODE, n);
  if(n->nd_vid == 0)
  {
    rb_raise(
        rb_eRuntimeError,
        "Invalid ID for vid (node type=%d)",
        nd_type(n));
  }
  return ID2SYM(n->nd_vid);
}