class Solargraph::Arc::Walker::Hook

Attributes

args[R]
node_type[R]
proc[R]

Public Class Methods

new(node_type, args, &block) click to toggle source
# File lib/solargraph/arc/walker.rb, line 6
def initialize(node_type, args, &block)
  @node_type = node_type
  @args = args
  @proc = Proc.new(&block)
end