Slide 66
Slide 66 text
3VCP$PQ"451SPDFTTFE4PVSDF
require 'rubocop-ast'
ast = RuboCop::AST::ProcessedSource.new(
'puts "hello"', 2.7
).ast
#=>s(:send, nil, :puts, s(:str, "hello"))
ast.class #=> RuboCop::AST::SendNode
ast.send_type? #=> true
ast.first_argument.basic_literal? #=> true