summaryrefslogtreecommitdiff
path: root/src/op.cc
Commit message (Collapse)AuthorAgeFilesLines
* "div", or "//", is now the operator of division.John Wiegley2009-01-311-1/+1
|
* Removed extraneous parentheses.John Wiegley2009-01-231-2/+1
|
* Added some debug code.John Wiegley2009-01-231-7/+9
|
* Errors while calculating value expressions now display meaningful errorJohn Wiegley2009-01-221-46/+107
| | | | context.
* Whitespace changes.John Wiegley2009-01-221-3/+5
|
* Parse != as !(==) and !~ as !(=~), for simplicity's sake.John Wiegley2009-01-221-12/+0
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Generate a better error if a function operand is invalid.John Wiegley2009-01-191-2/+1
|
* Corrected several assertions which could occur when using unary operators andJohn Wiegley2008-09-161-10/+12
| | | | unresolved identifiers.
* Removed more dead code and todo comments, and made it possible to streamJohn Wiegley2008-08-171-4/+11
| | | | compiled value expressions.
* Removed some dead code and updated the binary streaming code for op_t andJohn Wiegley2008-08-171-661/+58
| | | | value_t.
* Ledger now builds without any significant warnings, except for one file. SomeJohn Wiegley2008-08-101-1/+2
| | | | | of the warnings had to be temporarily disabled, but will be checked again once the code has moved into master.
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+1130
is in doc/, etc.