class RubyLint::AST::Builder

Custom AST builder class used to provide some extra additions/changes to the AST such as the use of a custom node class.

Public Instance Methods

n(type, children, location) click to toggle source

@see Parser::Builders::Default#n @return [RubyLint::AST::Node]

# File lib/ruby-lint/ast/builder.rb, line 12
def n(type, children, location)
  return Node.new(type, children, :location => location)
end