Sha256: 06a919847d46ce98b1909753c949d3792116687c4d2a8be037861d4e4812401b

Contents?: true

Size: 331 Bytes

Versions: 6

Compression:

Stored size: 331 Bytes

Contents

module Parser
  module AST
    class Node
      attr_reader type: Symbol

      attr_reader children: Array[untyped]

      def initialize: (Symbol `type`, Array[untyped] children) -> void

      def updated: (?Symbol?, ?Array[untyped]?) -> Node

      attr_reader location: Source::Map

      alias loc location
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
steep-1.2.1 sig/shims/parser.rbs
steep-1.2.0 sig/shims/parser.rbs
steep-1.2.0.pre.1 sig/shims/parser.rbs
steep-1.1.1 sig/shims/parser.rbs
steep-1.1.0 sig/shims/parser.rbs
steep-1.1.0.pre.1 sig/shims/parser.rbs