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