Sha256: 44deac42e91d41b06844530d82fb82bb55a612d269c881823ab5be124ad977db
Contents?: true
Size: 873 Bytes
Versions: 1
Compression:
Stored size: 873 Bytes
Contents
module Steep module AST module Types class Union attr_reader types: Array[t] attr_reader location: untyped def initialize: (types: Array[t], ?location: untyped) -> void def self.build: (types: Array[t], ?location: untyped) -> t def ==: (untyped other) -> bool @hash: Integer def hash: () -> Integer alias eql? == def subst: (Interface::Substitution s) -> t def to_s: () -> ::String @fvs: Set[variable] def free_variables: () -> Set[variable] def each_child: () { (t) -> void } -> void | () -> Enumerator[t, void] def map_type: () { (t) -> t } -> t include Helper::ChildrenLevel def level: () -> Array[Integer] def with_location: (untyped new_location) -> Union end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
steep-1.7.0.dev.3 | sig/steep/ast/types/union.rbs |