diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-30 16:18:40 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-10-30 16:18:40 +0000 |
commit | 9f8f39aa3cdb54532a85e41f14985fc6a530fb36 (patch) | |
tree | e06ef3485f7f8bd27a7acf1e1ab694c532660218 /src/fix-ng/fix-expr.cc | |
parent | e537844f4ebc53df13f52722fb16bbeb1f4cbd18 (diff) |
* Clean up the imploded parse tree. Quotes around strings are
removed, paths are absolutised relative to the path containing the
expression we just parsed, and integer literals are converted to
actual integers.
Diffstat (limited to 'src/fix-ng/fix-expr.cc')
-rw-r--r-- | src/fix-ng/fix-expr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fix-ng/fix-expr.cc b/src/fix-ng/fix-expr.cc index 00795da4c..8d47817ff 100644 --- a/src/fix-ng/fix-expr.cc +++ b/src/fix-ng/fix-expr.cc @@ -29,5 +29,5 @@ ATerm bottomupRewrite(TermFun & f, ATerm e) return (ATerm) ATreverse(out); } - throw badTerm("cannot rewrite", e); + return e; } |