Module: Yoda::Typing::Types::RbsTypeWrapperInterface
- Included in:
- InstanceType, SingletonType, Type
- Defined in:
- lib/yoda/typing/types/rbs_type_wrapper_interface.rb
Instance Method Summary collapse
- #environment ⇒ Model::Environment abstract
- #instance_type ⇒ Type abstract
- #rbs_type ⇒ RBS::Types::t abstract
- #singleton_type ⇒ Type abstract
- #to_s ⇒ String abstract
- #value ⇒ Model::Values::Base abstract
Instance Method Details
#environment ⇒ Model::Environment
This method is abstract.
7 8 9 |
# File 'lib/yoda/typing/types/rbs_type_wrapper_interface.rb', line 7 def environment fail NotImplementedError end |
#instance_type ⇒ Type
This method is abstract.
25 26 27 |
# File 'lib/yoda/typing/types/rbs_type_wrapper_interface.rb', line 25 def instance_type fail NotImplemetedError end |
#rbs_type ⇒ RBS::Types::t
This method is abstract.
13 14 15 |
# File 'lib/yoda/typing/types/rbs_type_wrapper_interface.rb', line 13 def rbs_type fail NotImplementedError end |
#singleton_type ⇒ Type
This method is abstract.
31 32 33 |
# File 'lib/yoda/typing/types/rbs_type_wrapper_interface.rb', line 31 def singleton_type fail NotImplemetedError end |
#to_s ⇒ String
This method is abstract.
37 38 39 |
# File 'lib/yoda/typing/types/rbs_type_wrapper_interface.rb', line 37 def to_s fail NotImplemetedError end |
#value ⇒ Model::Values::Base
This method is abstract.
19 20 21 |
# File 'lib/yoda/typing/types/rbs_type_wrapper_interface.rb', line 19 def value fail NotImplemetedError end |