Class: Idl::IncludeStatementAst

Inherits:
AstNode
  • Object
show all
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

Instance Method Summary collapse

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, from_h, #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, filename) ⇒ IncludeStatementAst

Returns a new instance of IncludeStatementAst.



962
963
964
# File 'lib/idlc/ast.rb', line 962

def initialize(input, interval, filename)
  super(input, interval, [filename])
end

Instance Method Details

#const_eval?(symtab) ⇒ Boolean

Returns:

  • (Boolean)


955
# File 'lib/idlc/ast.rb', line 955

def const_eval?(symtab) = false

#filenameObject



959
# File 'lib/idlc/ast.rb', line 959

def filename = T.must(@children[0]).text_value[1..-2] || ""

#to_hObject



972
973
974
# File 'lib/idlc/ast.rb', line 972

def to_h
  raise "unreachable"
end

#to_idlObject



967
# File 'lib/idlc/ast.rb', line 967

def to_idl = "include \"#{filename}\""

#type_check(symtab, strict:) ⇒ Object



970
# File 'lib/idlc/ast.rb', line 970

def type_check(symtab, strict:); end