Class: Origen::Pins::Timing::Timeset
- Inherits:
-
Object
- Object
- Origen::Pins::Timing::Timeset
- Defined in:
- lib/origen_testers/origen_ext/pins/timing/timeset.rb
Instance Attribute Summary collapse
-
#_timeset_ ⇒ Object
readonly
Returns the value of attribute timeset.
Instance Method Summary collapse
-
#method_missing(m, *args, &block) ⇒ Object
Defer any missing methods to the corresponding timeset object on the tester side.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(m, *args, &block) ⇒ Object
Defer any missing methods to the corresponding timeset object on the tester side. If the method isn't found their either, raise the standard NoMethod error.
19 20 21 22 23 24 25 |
# File 'lib/origen_testers/origen_ext/pins/timing/timeset.rb', line 19 def method_missing(m, *args, &block) if _timeset_.respond_to?(m) _timeset_.send(m, *args, &block) else super end end |
Instance Attribute Details
#_timeset_ ⇒ Object (readonly)
Returns the value of attribute timeset.
7 8 9 |
# File 'lib/origen_testers/origen_ext/pins/timing/timeset.rb', line 7 def _timeset_ @_timeset_ end |