Class: Riml::CatchNode

Inherits:
Struct
  • Object
show all
Includes:
NotNestedUnder, Visitable
Defined in:
lib/riml/nodes.rb

Constant Summary

Constants included from Visitable

Visitable::EMPTY_CHILDREN

Instance Attribute Summary collapse

Attributes included from Visitable

#compiled_output, #force_newline, #parent_node, #parser_info, #scope

Instance Method Summary collapse

Methods included from NotNestedUnder

#non_nested?, #not_nested_under_class

Methods included from Visitable

#accept, #force_newline_if_child_call_node?, #location_info

Methods included from Walkable

#child_after, #child_previous_to, #each, #index_by_children, #index_by_member, #insert_after, #insert_before, #next, #previous, #remove, #replace_with

Instance Attribute Details

#expressionsObject

Returns the value of attribute expressions

Returns:

  • (Object)

    the current value of expressions



945
946
947
# File 'lib/riml/nodes.rb', line 945

def expressions
  @expressions
end

#regexpObject

Returns the value of attribute regexp

Returns:

  • (Object)

    the current value of regexp



945
946
947
# File 'lib/riml/nodes.rb', line 945

def regexp
  @regexp
end

Instance Method Details

#childrenObject



949
950
951
# File 'lib/riml/nodes.rb', line 949

def children
  [expressions]
end