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
|
/* Copyright (C) 1999-2024 by The D Language Foundation, All Rights Reserved
* written by Walter Bright
* https://www.digitalmars.com
* Distributed under the Boost Software License, Version 1.0.
* https://www.boost.org/LICENSE_1_0.txt
* https://github.com/dlang/dmd/blob/master/src/dmd/rootobject.h
*/
#pragma once
#include "root/dsystem.h"
#include "root/dcompat.h"
typedef size_t hash_t;
struct OutBuffer;
enum DYNCAST
{
DYNCAST_OBJECT,
DYNCAST_EXPRESSION,
DYNCAST_DSYMBOL,
DYNCAST_TYPE,
DYNCAST_IDENTIFIER,
DYNCAST_TUPLE,
DYNCAST_PARAMETER,
DYNCAST_STATEMENT,
DYNCAST_CONDITION,
DYNCAST_TEMPLATEPARAMETER,
DYNCAST_INITIALIZER
};
/*
* Root of our class library.
*/
class RootObject
{
public:
RootObject() { }
virtual bool equals(const RootObject * const o) const;
/**
* Pretty-print an Object. Useful for debugging the old-fashioned way.
*/
virtual const char *toChars() const;
/// This function is `extern(D)` and should not be called from C++,
/// as the ABI does not match on some platforms
virtual DString toString();
/**
* Used as a replacement for dynamic_cast. Returns a unique number
* defined by the library user. For Object, the return value is 0.
*/
virtual DYNCAST dyncast() const;
};
|