Loading...
Searching...
No Matches
dumScope.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include "core/ast/scope.hpp"
5
6namespace by {
11 class _nout dumScope: public scope {
12 BY(CLASS(dumScope, scope))
13
14 public:
15 dumScope();
16 dumScope(const scope::super& org);
17
18 public:
19 // add:
20 using super::add;
21 nbool add(const std::string& key, const node& val) override;
22
23 public:
24 static me& singleton();
25 };
26}
Dummy scope implementation that ignores additions.
Definition dumScope.hpp:11
Base class for all AST nodes in the byeol language.
Definition node.hpp:195
Definition tnarr.hpp:9
to Top