Class: Dyph::Support::Text3

Inherits:
Object
  • Object
show all
Defined in:
lib/dyph/support/merger.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#baseObject (readonly)

Returns the value of attribute base.



148
149
150
# File 'lib/dyph/support/merger.rb', line 148

def base
  @base
end

#leftObject (readonly)

Returns the value of attribute left.



148
149
150
# File 'lib/dyph/support/merger.rb', line 148

def left
  @left
end

#rightObject (readonly)

Returns the value of attribute right.



148
149
150
# File 'lib/dyph/support/merger.rb', line 148

def right
  @right
end