method

argument_nodes

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: Node
argument_nodes() public

No documentation

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

Hide source
# File actionview/lib/action_view/ripper_ast_parser.rb, line 35
        def argument_nodes
          raise unless fcall?
          return [] if self[1].nil?
          if self[1].last == false || self[1].last.type == :vcall
            self[1][0...-1]
          else
            self[1][0..-1]
          end
        end
Register or log in to add new notes.