blob: 984dc42fbab77d4229aa7f181ebbc9080fa67e3a (
plain)
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
|
/**
* Defines the `Dsymbol` representing a `static assert()`.
*
* Specification: $(LINK2 https://dlang.org/spec/version.html#static-assert, Static Assert)
*
* Copyright: Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/staticassert.d, _staticassert.d)
* Documentation: https://dlang.org/phobos/dmd_staticassert.html
* Coverage: https://codecov.io/gh/dlang/dmd/src/master/src/dmd/staticassert.d
*/
module dmd.staticassert;
import dmd.dscope;
import dmd.dsymbol;
import dmd.expression;
import dmd.globals;
import dmd.id;
import dmd.identifier;
import dmd.mtype;
import dmd.visitor;
/***********************************************************
*/
extern (C++) final class StaticAssert : Dsymbol
{
Expression exp;
Expression msg;
extern (D) this(const ref Loc loc, Expression exp, Expression msg)
{
super(loc, Id.empty);
this.exp = exp;
this.msg = msg;
}
override StaticAssert syntaxCopy(Dsymbol s)
{
assert(!s);
return new StaticAssert(loc, exp.syntaxCopy(), msg ? msg.syntaxCopy() : null);
}
override void addMember(Scope* sc, ScopeDsymbol sds)
{
// we didn't add anything
}
override bool oneMember(Dsymbol* ps, Identifier ident)
{
//printf("StaticAssert::oneMember())\n");
*ps = null;
return true;
}
override const(char)* kind() const
{
return "static assert";
}
override void accept(Visitor v)
{
v.visit(this);
}
}
|