Sha256: 260cd0eb3a1ad02ca749def1cd97e885886305e181554b469457fa56c1b42e25
Contents?: true
Size: 389 Bytes
Versions: 6888
Compression:
Stored size: 389 Bytes
Contents
# frozen_string_literal: true module RuboCop module AST # This module provides a shorthand method to create a {Node} like # `Parser::AST::Sexp`. # # @see https://www.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 end
Version data entries
6,888 entries across 6,860 versions & 34 rubygems