/* Compiler implementation of the D programming language * Copyright (C) 1999-2022 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/version.h */ #pragma once #include "dsymbol.h" class DebugSymbol : public Dsymbol { public: unsigned level; DebugSymbol *syntaxCopy(Dsymbol *); const char *toChars() const; void addMember(Scope *sc, ScopeDsymbol *sds); const char *kind() const; DebugSymbol *isDebugSymbol(); void accept(Visitor *v) { v->visit(this); } }; class VersionSymbol : public Dsymbol { public: unsigned level; VersionSymbol *syntaxCopy(Dsymbol *); const char *toChars() const; void addMember(Scope *sc, ScopeDsymbol *sds); const char *kind() const; VersionSymbol *isVersionSymbol(); void accept(Visitor *v) { v->visit(this); } };