method
ast
v4.1.8 -
Show latest stable
- Class:
ActionDispatch::Journey::Routes
ast()public
No documentation available.
# File actionpack/lib/action_dispatch/journey/routes.rb, line 42
def ast
@ast ||= begin
asts = partitioned_routes.first.map(&:ast)
Nodes::Or.new(asts) unless asts.empty?
end
end