Flowdock
method

dedent_string

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: Ripper
dedent_string(p1, p2) public

No documentation

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

Hide source
static VALUE
parser_dedent_string(VALUE self, VALUE input, VALUE width)
{
    int wid, col;

    StringValue(input);
    wid = NUM2UINT(width);
    col = dedent_string(input, wid);
    return INT2NUM(col);
}
Register or log in to add new notes.