1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/**
* Provide the root object that AST classes in dmd inherit from.
*
* Copyright: Copyright (C) 1999-2024 by The D Language Foundation, All Rights Reserved
* Authors: Walter Bright, https://www.digitalmars.com
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/rootobject.d, _rootobject.d)
* Documentation: https://dlang.org/phobos/dmd_rootobject.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/rootobject.d
*/
module dmd.rootobject;
/***********************************************************
*/
enum DYNCAST : int
{
object,
expression,
dsymbol,
type,
identifier,
tuple,
parameter,
statement,
condition,
templateparameter,
initializer,
}
/***********************************************************
*/
extern (C++) class RootObject
{
this() nothrow pure @nogc @safe scope
{
}
bool equals(const RootObject o) const
{
return o is this;
}
const(char)* toChars() const
{
assert(0);
}
///
extern(D) const(char)[] toString() const
{
import core.stdc.string : strlen;
auto p = this.toChars();
return p[0 .. strlen(p)];
}
DYNCAST dyncast() const nothrow pure @nogc @safe
{
return DYNCAST.object;
}
}
|