Remove unused TypeIdentifier.originalSymbol

This commit is contained in:
Dennis Korpel 2025-02-16 16:41:03 +01:00 committed by The Dlang Bot
parent eb75ada85d
commit b0d35f225f
3 changed files with 0 additions and 5 deletions

View file

@ -4546,7 +4546,6 @@ class TypeIdentifier final : public TypeQualified
{
public:
Identifier* ident;
Dsymbol* originalSymbol;
static TypeIdentifier* create(Loc loc, Identifier* ident);
const char* kind() const override;
TypeIdentifier* syntaxCopy() override;

View file

@ -2959,9 +2959,6 @@ extern (C++) final class TypeIdentifier : TypeQualified
{
Identifier ident;
// The symbol representing this identifier, before alias resolution
Dsymbol originalSymbol;
extern (D) this(Loc loc, Identifier ident)
{
super(Tident, loc);

View file

@ -630,7 +630,6 @@ class TypeIdentifier final : public TypeQualified
{
public:
Identifier *ident;
Dsymbol *originalSymbol; // The symbol representing this identifier, before alias resolution
static TypeIdentifier *create(Loc loc, Identifier *ident);
const char *kind() override;