Class: ActionDispatch::Journey::Nodes::Dummy
- Defined in:
- actionpack/lib/action_dispatch/journey/nodes/node.rb
Overview
:nodoc:
Instance Attribute Summary
Attributes inherited from Node
Instance Method Summary collapse
-
#initialize(x = Object.new) ⇒ Dummy
constructor
A new instance of Dummy.
- #literal? ⇒ Boolean
Methods inherited from Literal
Methods inherited from Terminal
Methods inherited from Node
#cat?, #each, #group?, #name, #star?, #symbol?, #terminal?, #to_dot, #to_s, #to_sym, #type
Methods included from Enumerable
#as_json, #compact_blank, #exclude?, #excluding, #in_order_of, #including, #index_by, #index_with, #many?, #maximum, #minimum, #pick, #pluck, #sole
Constructor Details
#initialize(x = Object.new) ⇒ Dummy
Returns a new instance of Dummy.
122 123 124 |
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 122 def initialize(x = Object.new) super end |
Instance Method Details
#literal? ⇒ Boolean
126 |
# File 'actionpack/lib/action_dispatch/journey/nodes/node.rb', line 126 def literal?; false; end |