Sha256: 2b7c77b00f2ac919c462892cb365beb26b3111512b4124ab9c8e85b14330ac8a

Contents?: true

Size: 377 Bytes

Versions: 12

Compression:

Stored size: 377 Bytes

Contents

module Steep
  module AST
    module Signature
      class Alias
        attr_reader :location
        attr_reader :name
        attr_reader :params
        attr_reader :type

        def initialize(location:, name:, params:, type:)
          @location = location
          @name = name
          @params = params
          @type = type
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
steep-0.11.1 lib/steep/ast/signature/alias.rb
steep-0.11.0 lib/steep/ast/signature/alias.rb
steep-0.10.0 lib/steep/ast/signature/alias.rb
steep-0.9.0 lib/steep/ast/signature/alias.rb
steep-0.8.2 lib/steep/ast/signature/alias.rb
steep-0.8.1 lib/steep/ast/signature/alias.rb
steep-0.8.0 lib/steep/ast/signature/alias.rb
steep-0.7.1 lib/steep/ast/signature/alias.rb
steep-0.7.0 lib/steep/ast/signature/alias.rb
steep-0.6.0 lib/steep/ast/signature/alias.rb
steep-0.5.1 lib/steep/ast/signature/alias.rb
steep-0.5.0 lib/steep/ast/signature/alias.rb