blob: 389cff40054d07c7587767336bf5283425e62710 [file] [log] [blame]
/* Compiler implementation of the D programming language
* Copyright (C) 2009-2023 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/aliasthis.h
*/
#pragma once
#include "globals.h"
#include "dsymbol.h"
/**************************************************************/
class AliasThis final : public Dsymbol
{
public:
// alias Identifier this;
Identifier *ident;
Dsymbol *sym;
bool isDeprecated_;
AliasThis *syntaxCopy(Dsymbol *) override;
const char *kind() const override;
AliasThis *isAliasThis() { return this; }
void accept(Visitor *v) override { v->visit(this); }
bool isDeprecated() const override { return this->isDeprecated_; }
};