Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Shave a couple of allocations off Journey scan & parse | Matthew Draper | 2016-12-25 | 1 | -2/+3 |
| | |||||
* | Using no_result_var in Journey's parser generator | Jack Danger Canty | 2014-08-03 | 1 | -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 left | Aaron Patterson | 2014-05-19 | 1 | -2/+3 |
| | |||||
* | add missing semicolon to journey parser.y | Ben Holley | 2013-04-30 | 1 | -0/+1 |
| | |||||
* | Integrate Journey into Action Dispatch | Andrew White | 2012-12-19 | 1 | -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. |