xo-expression: + Apply expressions

This commit is contained in:
Roland Conybeare 2024-06-13 16:20:53 -04:00
commit d6371ee369
6 changed files with 64 additions and 6 deletions

19
src/expression/Apply.cpp Normal file
View 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 */