Sha256: 0fadea6d7d802d5044ddea010de59a8123350d665985ec5d4b33d3064152da89
Contents?: true
Size: 333 Bytes
Versions: 11
Compression:
Stored size: 333 Bytes
Contents
# frozen_string_literal: true module RuboCop # This module provides a shorthand method to create a {Node} like `AST::Sexp`. # # @see http://rubydoc.info/gems/ast/AST/Sexp module Sexp # Creates a {Node} with type `type` and children `children`. def s(type, *children) Node.new(type, children) end end end
Version data entries
11 entries across 11 versions & 2 rubygems