Sha256: fd5a015c67f44039607d1a12b64964fc3c01447a16282c8aacdbb4af12caa4ba

Contents?: true

Size: 287 Bytes

Versions: 1

Compression:

Stored size: 287 Bytes

Contents

# frozen_string_literal: true
module Reek
  module AST
    module SexpExtensions
      # Utility methods for :lambda nodes.
      module LambdaNode
        def name
          'lambda'
        end

        def module_creation_call?
          false
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reek-4.1.1 lib/reek/ast/sexp_extensions/lambda.rb