Flowdock
method

_racc_do_parse_c

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: Racc::Parser
_racc_do_parse_c(p1, p2) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
racc_cparse(VALUE parser, VALUE arg, VALUE sysdebug)
{
    VALUE vparams;
    struct cparse_params *v;

    vparams = TypedData_Make_Struct(CparseParams, struct cparse_params,
                                    &cparse_params_type, v);
    D_puts("starting cparse");
    v->sys_debug = RTEST(sysdebug);
    vparams = initialize_params(vparams, parser, arg, Qnil, Qnil);
    v->lex_is_iterator = FALSE;
    parse_main(v, Qnil, Qnil, 0);

    RB_GC_GUARD(vparams);
    return v->retval;
}
Register or log in to add new notes.