xo-reader2 xo-expresion2: work on define-expressions [WIP]
This commit is contained in:
parent
8bae2128a1
commit
516b0932ee
40 changed files with 711 additions and 72 deletions
25
xo-expression2/src/expression2/DLocalSymtab.cpp
Normal file
25
xo-expression2/src/expression2/DLocalSymtab.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/** @file DLocalSymtab.cpp
|
||||
*
|
||||
* @author Roland Conybeare, Jan 2026
|
||||
**/
|
||||
|
||||
#include "DLocalSymtab.hpp"
|
||||
#include "DUniqueString.hpp"
|
||||
#include <xo/indentlog/scope.hpp>
|
||||
|
||||
namespace xo {
|
||||
namespace scm {
|
||||
|
||||
Binding
|
||||
DLocalSymtab::lookup_binding(const DUniqueString * sym) const noexcept
|
||||
{
|
||||
scope log(XO_DEBUG(true), "stub impl");
|
||||
log && log(xtag("sym", std::string_view(*sym)));
|
||||
|
||||
return Binding();
|
||||
}
|
||||
|
||||
} /*namespace scm*/
|
||||
} /*namespace xo*/
|
||||
|
||||
/* end DLocalSymtab.cpp */
|
||||
Loading…
Add table
Add a link
Reference in a new issue