method

dedent_element

Importance_0
v2_4_6 - Show latest stable - 0 notes - Class: SexpBuilder
dedent_element(e, width) private

No documentation

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

Hide source
# File ext/ripper/lib/ripper/sexp.rb, line 66
    def dedent_element(e, width)
      if (n = dedent_string(e[1], width)) > 0
        e[2][1] += n
      end
      e
    end
Register or log in to add new notes.