Sha256: bcf7916e879231065c355cf5e275d2b3bd7062a915b671943865745ef7ac80c6
Contents?: true
Size: 667 Bytes
Versions: 16
Compression:
Stored size: 667 Bytes
Contents
module Steep module AST module Signature class Interface class Method attr_reader :location attr_reader :name attr_reader :types def initialize(location:, name:, types:) @location = location @name = name @types = types end end attr_reader :location attr_reader :name attr_reader :params attr_reader :methods def initialize(location:, name:, params:, methods:) @location = location @name = name @params = params @methods = methods end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems