diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-01 16:35:47 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-04 09:26:37 +0200 |
commit | 4a4e5ad3c50619ad7653b01b562af9794c97aa80 (patch) | |
tree | 3feef6e7889e5673f7212d2f3ff2c34ca871b7ab /unit-tests/test/script/parser/driver.cxx | |
parent | 89f8e08550d437eedd16f6aa0cc5333a7db75bea (diff) |
Implement command-pipe, command-expr in testscript parser
Diffstat (limited to 'unit-tests/test/script/parser/driver.cxx')
-rw-r--r-- | unit-tests/test/script/parser/driver.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unit-tests/test/script/parser/driver.cxx b/unit-tests/test/script/parser/driver.cxx index 18fcdce..20e1e6a 100644 --- a/unit-tests/test/script/parser/driver.cxx +++ b/unit-tests/test/script/parser/driver.cxx @@ -81,9 +81,9 @@ namespace build2 } virtual void - run (scope&, const command& t, size_t, const location&) override + run (scope&, const command_expr& e, size_t, const location&) override { - cout << ind_ << t << endl; + cout << ind_ << e << endl; } virtual void |