summaryrefslogtreecommitdiff
path: root/src/parser.cc
Commit message (Collapse)AuthorAgeFilesLines
* Added support for metadata and tagging, and made regexs a first-class type.John Wiegley2009-02-011-8/+28
|
* Revised the way that parsing flags get passed around.John Wiegley2009-01-291-29/+28
|
* Removed some extraneous code.John Wiegley2009-01-221-6/+4
|
* Correctly report the line context when there is a valexpr parsing error.John Wiegley2009-01-221-4/+14
|
* Allow function calls without arguments in the parser.John Wiegley2009-01-221-14/+3
|
* Corrected a parse-time optimization of "! CONSTANT".John Wiegley2009-01-221-1/+1
|
* Redid the way command-line arguments are processed. Before, Ledger used - andJohn Wiegley2009-01-221-2/+14
| | | | | | | | | | | | | | | -- to mean special things after the command verb was seen. But now, what used to be specified as this: ledger -n reg cash -payable -- shell Is now specified as this: ledger reg -n cash not payable @shell It could also be specified as: ledger -n reg \(cash and not payable\) and @shell
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Fixes to the way that EXPR_PARSE_SINGLE behaves.John Wiegley2008-09-151-14/+12
|
* Fixed the way that nested caught exceptions are rethrown, and how valueJohn Wiegley2008-09-151-6/+9
| | | | expressions are displayed when errors are found in them.
* Added value expression parsing flag EXPR_PARSE_SINGLE, which means to readJohn Wiegley2008-09-141-4/+5
| | | | | | only a single expression and then quit immediately. Useful for parsing expressions that begin with a left parenthesis and are known to end at the right parenthesis.
* Ledger now builds without any significant warnings, except for one file. SomeJohn Wiegley2008-08-101-1/+1
| | | | | of the warnings had to be temporarily disabled, but will be checked again once the code has moved into master.
* Removed all use of USE_BOOST_PYTHON from the main Ledger sources. When PythonJohn Wiegley2008-08-081-32/+0
| | | | | support is enabled for use within Ledger, it will do so through the current scoping mechanism.
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+441
is in doc/, etc.