mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-01 23:50:43 +03:00
Merge branch 'master' into merge-2.070
Conflicts: CMakeLists.txt runtime/druntime runtime/phobos tests/d2/dmd-testsuite
This commit is contained in:
commit
c02f4e7d08
15 changed files with 207 additions and 210 deletions
|
@ -12,6 +12,7 @@
|
|||
#include "enum.h"
|
||||
#include "id.h"
|
||||
#include "init.h"
|
||||
#include "nspace.h"
|
||||
#include "rmem.h"
|
||||
#include "template.h"
|
||||
#include "gen/classes.h"
|
||||
|
@ -133,6 +134,18 @@ public:
|
|||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void visit(Nspace *ns) LLVM_OVERRIDE {
|
||||
IF_LOG Logger::println("Nspace::codegen for %s", ns->toPrettyChars());
|
||||
LOG_SCOPE
|
||||
|
||||
if (!isError(ns) && ns->members) {
|
||||
for (auto sym : *ns->members)
|
||||
sym->accept(this);
|
||||
}
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void visit(InterfaceDeclaration *decl) LLVM_OVERRIDE {
|
||||
IF_LOG Logger::println("InterfaceDeclaration::codegen: '%s'",
|
||||
decl->toPrettyChars());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue