| /** |
| * Implements the `alias this` symbol. |
| * |
| * Specification: $(LINK2 https://dlang.org/spec/class.html#alias-this, Alias This) |
| * |
| * 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/aliasthis.d, _aliasthis.d) |
| * Documentation: https://dlang.org/phobos/dmd_aliasthis.html |
| * Coverage: https://codecov.io/gh/dlang/dmd/src/master/compiler/src/dmd/aliasthis.d |
| */ |
| |
| module dmd.aliasthis; |
| |
| import core.stdc.stdio; |
| |
| import dmd.dsymbol; |
| import dmd.identifier; |
| import dmd.location; |
| import dmd.visitor; |
| |
| /*********************************************************** |
| * alias ident this; |
| */ |
| extern (C++) final class AliasThis : Dsymbol |
| { |
| Identifier ident; |
| /// The symbol this `alias this` resolves to |
| Dsymbol sym; |
| /// Whether this `alias this` is deprecated or not |
| bool isDeprecated_; |
| |
| extern (D) this(Loc loc, Identifier ident) @safe |
| { |
| super(DSYM.aliasThis, loc, null); // it's anonymous (no identifier) |
| this.ident = ident; |
| } |
| |
| override AliasThis syntaxCopy(Dsymbol s) |
| { |
| assert(!s); |
| auto at = new AliasThis(loc, ident); |
| at.comment = comment; |
| return at; |
| } |
| |
| override const(char)* kind() const |
| { |
| return "alias this"; |
| } |
| |
| AliasThis isAliasThis() |
| { |
| return this; |
| } |
| |
| override void accept(Visitor v) |
| { |
| v.visit(this); |
| } |
| |
| override bool isDeprecated() const |
| { |
| return this.isDeprecated_; |
| } |
| } |