xo-expression: + Variable + apply/lambda fixes

This commit is contained in:
Roland Conybeare 2024-06-13 17:59:51 -04:00
commit 9d2b0f17f8
7 changed files with 90 additions and 3 deletions

View file

@ -0,0 +1,17 @@
/* @file Variable.cpp */
#include "Variable.hpp"
namespace xo {
namespace ast {
void
Variable::display(std::ostream & os) const {
os << "<Variable"
<< xtag("name", name_)
<< ">";
} /*display*/
} /*namespace ast*/
} /*namespace xo*/
/* end Variable.cpp */