로딩중...
검색중...
일치하는것 없음
dumScope.hpp
이 파일의 문서화 페이지로 가기
1
2
#pragma once
3
4
#include "
core/ast/scope.hpp
"
5
6
namespace
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
}
by::dumScope
Dummy scope implementation that ignores additions
Definition
dumScope.hpp:11
by::node
Base class for all AST nodes in the byeol language
Definition
node.hpp:195
by::tnarr
Definition
tnarr.hpp:9
by::tnchain< std::string, node, tnmap< std::string, node, immutableTactic > >
scope.hpp
to Top