aboutsummaryrefslogtreecommitdiff
path: root/gcc/d/dmd/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/d/dmd/module.h')
-rw-r--r--gcc/d/dmd/module.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/d/dmd/module.h b/gcc/d/dmd/module.h
index 4968ec7..03078b5e 100644
--- a/gcc/d/dmd/module.h
+++ b/gcc/d/dmd/module.h
@@ -1,6 +1,6 @@
/* Compiler implementation of the D programming language
- * Copyright (C) 1999-2020 by The D Language Foundation, All Rights Reserved
+ * Copyright (C) 1999-2021 by The D Language Foundation, All Rights Reserved
* written by Walter Bright
* http://www.digitalmars.com
* Distributed under the Boost Software License, Version 1.0.
@@ -43,7 +43,6 @@ public:
bool isAncestorPackageOf(const Package * const pkg) const;
- void semantic(Scope *);
Dsymbol *search(const Loc &loc, Identifier *ident, int flags = SearchLocalsOnly);
void accept(Visitor *v) { v->visit(this); }
@@ -124,9 +123,6 @@ public:
bool read(Loc loc); // read file, returns 'true' if succeed, 'false' otherwise.
Module *parse(); // syntactic parse
void importAll(Scope *sc);
- void semantic(Scope *); // semantic analysis
- void semantic2(Scope *); // pass 2 semantic analysis
- void semantic3(Scope *); // pass 3 semantic analysis
int needModuleInfo();
Dsymbol *search(const Loc &loc, Identifier *ident, int flags = SearchLocalsOnly);
bool isPackageAccessible(Package *p, Prot protection, int flags = 0);