Class: MathML::Over

Inherits:
Element show all
Defined in:
lib/math_ml/element.rb

Instance Attribute Summary

Attributes inherited from Element

#display_style

Instance Method Summary collapse

Methods inherited from Element

#as_display_style

Methods inherited from XMLElement

#pop

Constructor Details

#initialize(base, over) ⇒ Over

Returns a new instance of Over.



131
132
133
134
# File 'lib/math_ml/element.rb', line 131

def initialize(base, over)
	super("mover")
	self << base << over
end