Class: HDLRuby::Low::Ref
- Inherits:
-
Expression
- Object
- Base::Expression
- Expression
- HDLRuby::Low::Ref
- Defined in:
- lib/HDLRuby/hruby_db.rb,
lib/HDLRuby/hruby_low.rb,
lib/HDLRuby/hruby_low2c.rb,
lib/HDLRuby/hruby_low2vhd.rb,
lib/HDLRuby/hruby_low2high.rb,
lib/HDLRuby/hruby_low_mutable.rb,
lib/HDLRuby/hruby_low_skeleton.rb,
lib/HDLRuby/hruby_low_fix_types.rb
Overview
Extends the Ref class with fixing of types and constants.
Constant Summary
Constants included from Low2Symbol
Low2Symbol::Low2SymbolPrefix, Low2Symbol::Low2SymbolTable, Low2Symbol::Symbol2LowTable
Instance Attribute Summary
Attributes inherited from Expression
Attributes included from Hparent
Instance Method Summary collapse
-
#each_node(&ruby_block) ⇒ Object
(also: #each_expression)
Iterates over the reference children if any.
-
#each_node_deep(&ruby_block) ⇒ Object
Iterates over the nodes deeply if any.
-
#eql?(obj) ⇒ Boolean
Comparison for hash: structural comparison.
-
#explicit_types(type = nil) ⇒ Object
Explicit the types conversions in the reference where +type+ is the expected type of the condition if any.
-
#hash ⇒ Object
Hash function.
-
#map_nodes!(&ruby_block) ⇒ Object
Maps on the children.
-
#path_each(&ruby_block) ⇒ Object
Iterates over the names of the path indicated by the reference.
-
#to_c(level = 0, left = false) ⇒ Object
Generates the C text of the equivalent HDLRuby::High code.
-
#to_high(level = 0) ⇒ Object
Generates the text of the equivalent HDLRuby::High code.
-
#to_vhdl(level = 0) ⇒ Object
Generates the text of the equivalent HDLRuby::High code.
Methods inherited from Expression
#boolean?, #break_types!, #clone, #each_ref_deep, #extract_selects_to!, #initialize, #leftvalue?, #replace_expressions!, #replace_names!, #rightvalue?, #set_type!, #statement
Methods included from Low2Symbol
Methods included from Hparent
Constructor Details
This class inherits a constructor from HDLRuby::Low::Expression
Instance Method Details
#each_node(&ruby_block) ⇒ Object Also known as: each_expression
Iterates over the reference children if any.
4402 4403 4404 4405 4406 |
# File 'lib/HDLRuby/hruby_low.rb', line 4402 def each_node(&ruby_block) # No ruby block? Return an enumerator. return to_enum(:each_node) unless ruby_block # A ruby block? Apply it on the children: default none. end |
#each_node_deep(&ruby_block) ⇒ Object
Iterates over the nodes deeply if any.
4411 4412 4413 4414 4415 4416 4417 |
# File 'lib/HDLRuby/hruby_low.rb', line 4411 def each_node_deep(&ruby_block) # No ruby block? Return an enumerator. return to_enum(:each_node_deep) unless ruby_block # A ruby block? First apply it to current. ruby_block.call(self) # And that's all. end |
#eql?(obj) ⇒ Boolean
Comparison for hash: structural comparison.
4374 4375 4376 4377 4378 4379 4380 |
# File 'lib/HDLRuby/hruby_low.rb', line 4374 def eql?(obj) # General comparison. return false unless super(obj) # Specific comparison. return false unless obj.is_a?(Ref) return true end |
#explicit_types(type = nil) ⇒ Object
Explicit the types conversions in the reference where +type+ is the expected type of the condition if any.
324 325 326 |
# File 'lib/HDLRuby/hruby_low_fix_types.rb', line 324 def explicit_types(type = nil) raise "Should implement explicit_types for class #{self.class}." end |
#hash ⇒ Object
Hash function.
4383 4384 4385 |
# File 'lib/HDLRuby/hruby_low.rb', line 4383 def hash super end |
#map_nodes!(&ruby_block) ⇒ Object
Maps on the children.
1537 1538 1539 |
# File 'lib/HDLRuby/hruby_low_mutable.rb', line 1537 def map_nodes!(&ruby_block) # Nothing to do. end |
#path_each(&ruby_block) ⇒ Object
Iterates over the names of the path indicated by the reference.
NOTE: this is not a method for iterating over all the names included in the reference. For instance, this method will return nil without iterating if a RefConcat or is met.
Returns an enumerator if no ruby block is given.
4394 4395 4396 4397 4398 4399 |
# File 'lib/HDLRuby/hruby_low.rb', line 4394 def path_each(&ruby_block) # No ruby block? Return an enumerator. return to_enum(:path_each) unless ruby_block # A ruby block? Apply it on... nothing by default. return nil end |
#to_c(level = 0, left = false) ⇒ Object
Generates the C text of the equivalent HDLRuby::High code. +level+ is the hierachical level of the object and +left+ tells if it is a left value or not.
1812 1813 1814 1815 |
# File 'lib/HDLRuby/hruby_low2c.rb', line 1812 def to_c(level = 0, left = false) # Should never be here. raise AnyError, "Internal error: to_c should be implemented in class :#{self.class}" end |
#to_high(level = 0) ⇒ Object
Generates the text of the equivalent HDLRuby::High code. +level+ is the hierachical level of the object.
653 654 655 656 |
# File 'lib/HDLRuby/hruby_low2high.rb', line 653 def to_high(level = 0) # Should never be here. raise AnyError, "Internal error: to_high should be implemented in class :#{self.class}" end |
#to_vhdl(level = 0) ⇒ Object
Generates the text of the equivalent HDLRuby::High code. +level+ is the hierachical level of the object.
1372 1373 1374 1375 |
# File 'lib/HDLRuby/hruby_low2vhd.rb', line 1372 def to_vhdl(level = 0) # Should never be here. raise AnyError, "Internal error: to_vhdl should be implemented in class :#{self.class}" end |