Class: ActionDispatch::Journey::Nodes::Dummy
- Defined in:
- 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 Node
#each, #name, #symbol?, #to_dot, #to_s, #to_sym, #type
Constructor Details
#initialize(x = Object.new) ⇒ Dummy
Returns a new instance of Dummy.
54 55 56 |
# File 'lib/action_dispatch/journey/nodes/node.rb', line 54 def initialize(x = Object.new) super end |
Instance Method Details
#literal? ⇒ Boolean
58 |
# File 'lib/action_dispatch/journey/nodes/node.rb', line 58 def literal?; false; end |