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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/**
* Defines a `Dsymbol` for `version = identifier` and `debug = identifier` statements.
*
* Specification: $(LINK2 https://dlang.org/spec/version.html#version-specification, Version Specification),
* $(LINK2 https://dlang.org/spec/version.html#debug_specification, Debug Specification).
*
* Copyright: Copyright (C) 1999-2025 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 https://www.digitalmars.com, Walter Bright)
* License: $(LINK2 https://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/compiler/src/dmd/dversion.d, _dversion.d)
* Documentation: https://dlang.org/phobos/dmd_dversion.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/compiler/src/dmd/dversion.d
*/
module dmd.dversion;
import dmd.arraytypes;
import dmd.cond;
import dmd.dmodule;
import dmd.dscope;
import dmd.dsymbol;
import dmd.dsymbolsem;
import dmd.globals;
import dmd.identifier;
import dmd.location;
import dmd.common.outbuffer;
import dmd.visitor;
/***********************************************************
* DebugSymbol's happen for statements like:
* debug = identifier;
*/
extern (C++) final class DebugSymbol : Dsymbol
{
extern (D) this(Loc loc, Identifier ident) @safe
{
super(DSYM.debugSymbol, loc, ident);
}
extern (D) this(Loc loc) @safe
{
super(DSYM.aliasDeclaration, loc, null);
}
override DebugSymbol syntaxCopy(Dsymbol s)
{
assert(!s);
auto ds = new DebugSymbol(loc, ident);
ds.comment = comment;
return ds;
}
override const(char)* kind() const nothrow
{
return "debug";
}
override void accept(Visitor v)
{
v.visit(this);
}
}
/***********************************************************
* VersionSymbol's happen for statements like:
* version = identifier;
*/
extern (C++) final class VersionSymbol : Dsymbol
{
extern (D) this(Loc loc, Identifier ident) @safe
{
super(DSYM.versionSymbol, loc, ident);
}
extern (D) this(Loc loc) @safe
{
super(DSYM.versionSymbol, loc, null);
}
override VersionSymbol syntaxCopy(Dsymbol s)
{
assert(!s);
auto ds = new VersionSymbol(loc, ident);
ds.comment = comment;
return ds;
}
override const(char)* kind() const nothrow
{
return "version";
}
override void accept(Visitor v)
{
v.visit(this);
}
}
|