xo-expression: + Apply expressions
This commit is contained in:
parent
2d94fd51bf
commit
d6371ee369
6 changed files with 64 additions and 6 deletions
19
src/expression/Apply.cpp
Normal file
19
src/expression/Apply.cpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/* @file Apply.cpp */
|
||||
|
||||
#include "Apply.hpp"
|
||||
#include "xo/indentlog/print/vector.hpp"
|
||||
|
||||
namespace xo {
|
||||
namespace ast {
|
||||
void
|
||||
Apply::display(std::ostream & os) const {
|
||||
os << "<Apply"
|
||||
<< xtag("fn", fn_)
|
||||
<< xtag("argv", argv_)
|
||||
<< ">";
|
||||
}
|
||||
} /*namespace ast*/
|
||||
} /*namespace xo*/
|
||||
|
||||
|
||||
/* end Apply.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue