Class: ActionDispatch::Journey::Nodes::Star

Inherits:
Unary
  • Object
show all
Defined in:
lib/action_dispatch/journey/nodes/node.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes inherited from Node

#left, #memo

Instance Method Summary collapse

Methods inherited from Unary

#children

Methods inherited from Node

#cat?, #each, #group?, #initialize, #literal?, #symbol?, #terminal?, #to_dot, #to_s, #to_sym

Constructor Details

This class inherits a constructor from ActionDispatch::Journey::Nodes::Node

Instance Method Details

#nameObject



108
109
110
# File 'lib/action_dispatch/journey/nodes/node.rb', line 108

def name
  left.name.tr "*:", ""
end

#star?Boolean

Returns:

  • (Boolean)


105
# File 'lib/action_dispatch/journey/nodes/node.rb', line 105

def star?; true; end

#typeObject



106
# File 'lib/action_dispatch/journey/nodes/node.rb', line 106

def type; :STAR; end