Class: Dyph::Support::Text3
- Inherits:
-
Object
- Object
- Dyph::Support::Text3
- Defined in:
- lib/dyph/support/merger.rb
Instance Attribute Summary collapse
-
#base ⇒ Object
readonly
Returns the value of attribute base.
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left:, right:, base:) ⇒ Text3
constructor
A new instance of Text3.
Constructor Details
#initialize(left:, right:, base:) ⇒ Text3
Returns a new instance of Text3.
149 150 151 152 153 |
# File 'lib/dyph/support/merger.rb', line 149 def initialize(left:, right:, base:) @left = left @right = right @base = base end |
Instance Attribute Details
#base ⇒ Object (readonly)
Returns the value of attribute base.
148 149 150 |
# File 'lib/dyph/support/merger.rb', line 148 def base @base end |
#left ⇒ Object (readonly)
Returns the value of attribute left.
148 149 150 |
# File 'lib/dyph/support/merger.rb', line 148 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
148 149 150 |
# File 'lib/dyph/support/merger.rb', line 148 def right @right end |