Class: Idl::DontCareLvalueAst
- Includes:
- Rvalue
- Defined in:
- lib/idlc/ast.rb
Constant Summary
Constants inherited from AstNode
AstNode::Bits1Type, AstNode::Bits32Type, AstNode::Bits64Type, AstNode::BoolType, AstNode::ConstBoolType, AstNode::PossiblyUnknownBits1Type, AstNode::PossiblyUnknownBits32Type, AstNode::PossiblyUnknownBits64Type, AstNode::ReachableFunctionCacheType, AstNode::StringType, AstNode::VoidType
Instance Attribute Summary
Attributes inherited from AstNode
#children, #input, #interval, #parent
Class Method Summary collapse
Instance Method Summary collapse
- #const_eval?(symtab) ⇒ Boolean
-
#initialize(input, interval) ⇒ DontCareLvalueAst
constructor
A new instance of DontCareLvalueAst.
- #to_h ⇒ Object
- #to_idl ⇒ Object
-
#type(_symtab) ⇒ Type
Return the type of this node.
- #type_check(_symtab, strict:) ⇒ Object
-
#value(_symtab) ⇒ Integer, Boolean
Return the compile-time-known value of the node.
Methods included from Rvalue
#max_value, #min_value, #truncate, #values
Methods inherited from AstNode
#always_terminates?, #declaration?, #executable?, extract_base_var_name, #find_ancestor, #find_dst_registers, #find_referenced_csrs, #find_src_registers, #freeze_tree, #gen_adoc, #gen_option_adoc, #input_file, input_from_source_yaml, #inspect, #internal_error, interval_from_source_yaml, #lineno, #lines_around, #nullify_assignments, #pass_find_return_values, #path, #print_ast, #prune, #reachable_exceptions, #reachable_functions, #set_input_file, #set_input_file_unless_already_set, #source_line_file_offsets, #source_starting_offset, #source_yaml, #starting_line, #text_value, #truncation_warn, #type_error, #unindent, value_else, #value_else, value_error, #value_error, value_try, #value_try, write_back_nested
Constructor Details
#initialize(input, interval) ⇒ DontCareLvalueAst
Returns a new instance of DontCareLvalueAst.
6785 |
# File 'lib/idlc/ast.rb', line 6785 def initialize(input, interval) = super(input, interval, EMPTY_ARRAY) |
Class Method Details
.from_h(yaml, source_mapper) ⇒ Object
6810 6811 6812 6813 6814 6815 6816 6817 6818 |
# File 'lib/idlc/ast.rb', line 6810 def self.from_h(yaml, source_mapper) raise "Bad YAML" unless yaml.key?("kind") && yaml.fetch("kind") == "dont_care_lval" input = input_from_source_yaml(yaml.fetch("source"), source_mapper) interval = interval_from_source_yaml(yaml.fetch("source")) DontCareLvalueAst.new( input, interval ) end |
Instance Method Details
#const_eval?(symtab) ⇒ Boolean
6783 |
# File 'lib/idlc/ast.rb', line 6783 def const_eval?(symtab) = true |
#to_h ⇒ Object
6804 6805 6806 6807 |
# File 'lib/idlc/ast.rb', line 6804 def to_h = { "kind" => "dont_care_lval", "source" => source_yaml } |
#to_idl ⇒ Object
6801 |
# File 'lib/idlc/ast.rb', line 6801 def to_idl = "-" |
#type(_symtab) ⇒ Type
Return the type of this node
6793 6794 6795 |
# File 'lib/idlc/ast.rb', line 6793 def type(_symtab) Type.new(:dontcare) end |
#type_check(_symtab, strict:) ⇒ Object
6788 6789 6790 |
# File 'lib/idlc/ast.rb', line 6788 def type_check(_symtab, strict:) # nothing to do! end |
#value(_symtab) ⇒ Integer, Boolean
Return the compile-time-known value of the node
6798 |
# File 'lib/idlc/ast.rb', line 6798 def value(_symtab) = internal_error "Why are you calling value for an lval?" |