aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/journey/parser.y
Commit message (Collapse)AuthorAgeFilesLines
* Using no_result_var in Journey's parser generatorJack Danger Canty2014-08-031-11/+11
| | | | | | | | | | | Previously the generated parser had an intermediate local variable `result` that really useful if you're building up a stateful object but Journey always discards the result argument to the reduce functions. This produces a simpler parser for anybody who actually wants to read the thing. Sadly, there's no real performance speedup with this change.
* make the AST go from left to right, rather than right to leftAaron Patterson2014-05-191-2/+3
|
* add missing semicolon to journey parser.yBen Holley2013-04-301-0/+1
|
* Integrate Journey into Action DispatchAndrew White2012-12-191-0/+47
Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49.