xo-expression/xo-reader: refactor Environment -> SymbolTable
This commit is contained in:
parent
628fcc44a1
commit
42147bb7c0
10 changed files with 35 additions and 35 deletions
|
|
@ -6,7 +6,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "exprstate.hpp"
|
||||
#include "xo/expression/LocalEnv.hpp"
|
||||
#include "xo/expression/LocalSymtab.hpp"
|
||||
//#include <cstdint>
|
||||
|
||||
namespace xo {
|
||||
|
|
@ -55,8 +55,8 @@ namespace xo {
|
|||
**/
|
||||
class lambda_xs : public exprstate {
|
||||
public:
|
||||
using Environment = xo::scm::Environment;
|
||||
using LocalEnv = xo::scm::LocalEnv;
|
||||
using Environment = xo::scm::SymbolTable;
|
||||
using LocalEnv = xo::scm::LocalSymtab;
|
||||
|
||||
public:
|
||||
lambda_xs();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue