about summary refs log tree commit diff
path: root/src/fix-ng/fix-expr.cc
AgeCommit message (Collapse)AuthorFilesLines
2003-11-05 * Default function arguments.Eelco Dolstra1-1/+4
2003-11-03 * Work around problems with the ATerm library.Eelco Dolstra1-19/+103
The ATerm library doesn't search the heap for pointers to ATerms when garbage collecting. As a result, C++ containers such as `map<ATerm, ATerm>' will cause pointer to be hidden from the garbage collector, causing crashes. Instead, we now use ATermTables.
2003-11-03 * Shorter list syntax ([a b c] instead of [a, b, c]).Eelco Dolstra1-6/+4
2003-11-01 * Filter the substitution list when descending into a recursiveEelco Dolstra1-1/+14
attribute set.
2003-10-31 * Working evaluator.Eelco Dolstra1-0/+93
* Mutually recursive attribute sets. * Print evaluator efficiency statistics.
2003-10-30 * Clean up the imploded parse tree. Quotes around strings areEelco Dolstra1-1/+1
removed, paths are absolutised relative to the path containing the expression we just parsed, and integer literals are converted to actual integers.
2003-10-30 * Bottomup rewrite function.Eelco Dolstra1-0/+33