diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-03T10·21+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-11-03T10·21+0000 |
commit | ad0976f8d5f2afbca4e2fe6cbb3d2c2e53760222 (patch) | |
tree | cc8502417b464b7284052422e5911258bd5ddcec /src/fix-ng/parser.cc | |
parent | 40986312bb00f0101a6634db42080daee03f887b (diff) |
* Grammar changes. Attributes in attribute sets are now delimited with
semicolons instead of comma's. Final semicolon in the set is optional.
Diffstat (limited to 'src/fix-ng/parser.cc')
-rw-r--r-- | src/fix-ng/parser.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fix-ng/parser.cc b/src/fix-ng/parser.cc index 7dff0363dbc5..e159262ca1cc 100644 --- a/src/fix-ng/parser.cc +++ b/src/fix-ng/parser.cc @@ -147,6 +147,9 @@ Expr parseExprFromFile(Path path) if (!imploded) throw Error(format("cannot implode parse tree")); + debug(format("imploded parse tree of `%1%': %2%") + % path % printTerm(imploded)); + /* Finally, clean it up. */ Cleanup cleanup; cleanup.basePath = dirOf(path); |