-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
78 changed files
with
2,418 additions
and
694 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
|
||
// Compiler implementation of the D programming language | ||
// Copyright (c) 2009-2009 by Digital Mars | ||
// All Rights Reserved | ||
// written by Walter Bright | ||
// http://www.digitalmars.com | ||
// License for redistribution is by either the Artistic License | ||
// in artistic.txt, or the GNU General Public License in gnu.txt. | ||
// See the included readme.txt for details. | ||
|
||
#include <stdio.h> | ||
#include <assert.h> | ||
|
||
#include "mars.h" | ||
#include "identifier.h" | ||
#include "aliasthis.h" | ||
#include "scope.h" | ||
#include "aggregate.h" | ||
#include "dsymbol.h" | ||
|
||
#if DMDV2 | ||
|
||
|
||
AliasThis::AliasThis(Loc loc, Identifier *ident) | ||
: Dsymbol(NULL) // it's anonymous (no identifier) | ||
{ | ||
this->loc = loc; | ||
this->ident = ident; | ||
} | ||
|
||
Dsymbol *AliasThis::syntaxCopy(Dsymbol *s) | ||
{ | ||
assert(!s); | ||
/* Since there is no semantic information stored here, | ||
* we don't need to copy it. | ||
*/ | ||
return this; | ||
} | ||
|
||
void AliasThis::semantic(Scope *sc) | ||
{ | ||
Dsymbol *parent = sc->parent; | ||
if (parent) | ||
parent = parent->pastMixin(); | ||
AggregateDeclaration *ad = NULL; | ||
if (parent) | ||
ad = parent->isAggregateDeclaration(); | ||
if (ad) | ||
{ | ||
if (ad->aliasthis) | ||
error("there can be only one alias this"); | ||
assert(ad->members); | ||
Dsymbol *s = ad->search(loc, ident, 0); | ||
ad->aliasthis = s; | ||
} | ||
else | ||
error("alias this can only appear in struct or class declaration, not %s", parent ? parent->toChars() : "nowhere"); | ||
} | ||
|
||
const char *AliasThis::kind() | ||
{ | ||
return "alias this"; | ||
} | ||
|
||
void AliasThis::toCBuffer(OutBuffer *buf, HdrGenState *hgs) | ||
{ | ||
buf->writestring("alias "); | ||
buf->writestring(ident->toChars()); | ||
buf->writestring(" this;\n"); | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
|
||
// Compiler implementation of the D programming language | ||
// Copyright (c) 2009-2009 by Digital Mars | ||
// All Rights Reserved | ||
// written by Walter Bright | ||
// http://www.digitalmars.com | ||
// License for redistribution is by either the Artistic License | ||
// in artistic.txt, or the GNU General Public License in gnu.txt. | ||
// See the included readme.txt for details. | ||
|
||
#ifndef DMD_ALIASTHIS_H | ||
#define DMD_ALIASTHIS_H | ||
|
||
#ifdef __DMC__ | ||
#pragma once | ||
#endif /* __DMC__ */ | ||
|
||
#include "mars.h" | ||
#include "dsymbol.h" | ||
|
||
/**************************************************************/ | ||
|
||
#if DMDV2 | ||
|
||
struct AliasThis : Dsymbol | ||
{ | ||
// alias Identifier this; | ||
Identifier *ident; | ||
|
||
AliasThis(Loc loc, Identifier *ident); | ||
|
||
Dsymbol *syntaxCopy(Dsymbol *); | ||
void semantic(Scope *sc); | ||
const char *kind(); | ||
void toCBuffer(OutBuffer *buf, HdrGenState *hgs); | ||
AliasThis *isAliasThis() { return this; } | ||
}; | ||
|
||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.