summaryrefslogtreecommitdiff
path: root/src/parser.h
Commit message (Collapse)AuthorAgeFilesLines
* Use #pragma onceAlexis Hildebrandt2023-04-101-4/+1
|
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* Change header guard names to use `INCLUDED_` prefixPhil Newton2022-04-061-3/+3
| | | | Fixes #2049
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2018-01-271-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2017-01-051-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2016Alexis Hildebrandt2016-01-021-1/+1
| | | | [ci skip]
* Convert boost::optional objects to bool explicitly.Jonathan Wakely2015-07-271-1/+1
| | | | Fixes #417.
* Revert "boost::none_t no longer convertible from literal 0 in 1.58"John Wiegley2015-05-171-1/+1
| | | | This reverts commit 48aec0f093ff6494a3e4f7cd5166cb4a27c16814.
* boost::none_t no longer convertible from literal 0 in 1.58Johann Klähn2015-05-101-1/+1
| | | | Instead we use boost::none, which has been documented since boost 1.34.0.
* Bump copyright notice to 2015Alexis Hildebrandt2014-12-271-1/+1
| | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/"
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Converted the Ledger build system to use CMakeJohn Wiegley2012-05-201-2/+2
|
* Generalized function call parsingJohn Wiegley2012-03-051-0/+2
| | | | | | Directly calling a lambda now works: (x -> x + 10)(10) => 20
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Report an error in the case of '(1' (missing rparen)John Wiegley2011-11-101-2/+6
| | | | Fixes #557
* Added initial support for lambda functionsJohn Wiegley2010-09-061-0/+6
|
* Untabified all source filesJohn Wiegley2010-06-111-15/+15
|
* Allow opt -NDEBUG build to complete without warningsJohn Wiegley2010-06-041-0/+6
|
* Improved error reporting in the expression parserJohn Wiegley2010-05-221-2/+3
| | | | Fixes 15A80F68-F233-49D9-AF0C-9908BB6903BA
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Redesigned the expr_t, predicate_t, query_t classesJohn Wiegley2009-11-091-12/+3
|
* Removed a bunch of empty commentsJohn Wiegley2009-11-081-9/+0
|
* Added support for metadata and tagging, and made regexs a first-class type.John Wiegley2009-02-011-0/+2
|
* Added documentation stubs for all include files and classes.John Wiegley2009-01-311-0/+19
|
* Revised the way that parsing flags get passed around.John Wiegley2009-01-291-22/+25
|
* Whitespace changes.John Wiegley2009-01-221-7/+3
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Fixed the way that nested caught exceptions are rethrown, and how valueJohn Wiegley2008-09-151-2/+3
| | | | 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.
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+103
is in doc/, etc.