/* * call-seq: * new(name, document) * * Create a new node with +name+ sharing GC lifecycle with +document+ */ static VALUE new(int argc, VALUE *argv, VALUE klass) { xmlDocPtr doc; VALUE name; VALUE document; VALUE rest; rb_scan_args(argc, argv, "2*", &name, &document, &rest); Data_Get_Struct(document, xmlDoc, doc); xmlNodePtr node = xmlNewNode(NULL, (xmlChar *)StringValuePtr(name)); node->doc = doc->doc; NOKOGIRI_ROOT_NODE(node); VALUE rb_node = Nokogiri_wrap_xml_node(klass, node); rb_funcall2(rb_node, rb_intern("initialize"), argc, argv); if(rb_block_given_p()) rb_yield(rb_node); return rb_node; }