summaryrefslogtreecommitdiff
path: root/src/expr.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]
* [ledger] Remove --cache optionAlexis Hildebrandt2015-02-181-13/+0
| | | | and all boost serialisation related code.
* 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-1/+1
|
* Whitespace fixJohn Wiegley2012-03-181-1/+0
|
* Move expr_t's ctor/dtors into expr.ccJohn Wiegley2012-03-091-53/+13
| | | | Fixes #672
* Whitespace fixJohn Wiegley2012-03-071-0/+1
|
* Created merged_expr_t class for chained expressionsJohn Wiegley2012-03-071-1/+61
|
* Add support for valuation expressions on commoditiesJohn Wiegley2012-03-051-0/+3
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Implement the "tag" metadata directiveJohn Wiegley2012-02-271-0/+9
|
* Report an error in the case of '(1' (missing rparen)John Wiegley2011-11-101-3/+3
| | | | Fixes #557
* Added "source" command, for executing valexpr filesJohn Wiegley2010-06-241-0/+4
|
* Completely reworked argument passing in expressionsJohn Wiegley2010-06-131-1/+19
|
* Untabified all source filesJohn Wiegley2010-06-111-5/+5
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Added several more missing virtual keywordsJohn Wiegley2009-11-211-1/+1
|
* Redesigned the expr_t, predicate_t, query_t classesJohn Wiegley2009-11-091-89/+55
|
* Removed a bunch of empty commentsJohn Wiegley2009-11-081-9/+0
|
* Whitespace fixJohn Wiegley2009-11-041-1/+1
|
* Added serialization methods for most typeJohn Wiegley2009-10-301-0/+16
| | | | | This allows journal_t objects to be completed serialized to disk and deserialized.
* The destructor for expr_t doesn't need to be virtualJohn Wiegley2009-10-301-1/+1
|
* Render an expr if expr_t::text() has no stringJohn Wiegley2009-10-281-4/+1
|
* Corrected warnings g++-4.3.3 was complaining aboutJohn Wiegley2009-02-281-1/+2
|
* Parse '/' in an operator context as "div"John Wiegley2009-02-151-1/+2
|
* Recompile the amount_expr before summing account totals.John Wiegley2009-02-091-0/+4
|
* Fixes to the new Python/scope integration code.John Wiegley2009-02-081-0/+7
|
* Perhaps expr_t objects to remember their scope "context".John Wiegley2009-02-081-4/+18
|
* Implemented expr_context.John Wiegley2009-02-071-4/+3
|
* Whitespace fix.John Wiegley2009-02-051-3/+3
|
* Largely removed all of Ledger's use of global variables, for the REPL's sake.John Wiegley2009-02-041-11/+1
|
* Removed the binary caching code, and the XML, QIF and Gnucash parsers.John Wiegley2009-02-031-2/+0
|
* Simplified error context handling.John Wiegley2009-02-021-0/+5
|
* Added documentation stubs for all include files and classes.John Wiegley2009-01-311-0/+19
|
* Stopped using the generic "unsigned int" in favor of more specific types.John Wiegley2009-01-291-2/+2
|
* Revised the way that parsing flags get passed around.John Wiegley2009-01-291-2/+12
|
* Reorganized Ledger so that it builds as 7 separate libraries. This is mainlyJohn Wiegley2009-01-251-3/+6
| | | | to prove to myself that it has proper decoupling between prior code areas.
* 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-1/+2
| | | | expressions are displayed when errors are found in them.
* Removed more dead code and todo comments, and made it possible to streamJohn Wiegley2008-08-171-1/+1
| | | | compiled value expressions.
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+125
is in doc/, etc.