Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ class Module : public Package
bool read(Loc loc); // read file, returns 'true' if succeed, 'false' otherwise.
Module *parse(); // syntactic parse
void importAll(Scope *sc);
void semantic(); // semantic analysis
void semantic2(); // pass 2 semantic analysis
void semantic3(); // pass 3 semantic analysis
void semantic(Scope *); // semantic analysis
void semantic2(Scope *); // pass 2 semantic analysis
void semantic3(Scope *); // pass 3 semantic analysis
int needModuleInfo();
Dsymbol *search(Loc loc, Identifier *ident, int flags = SearchLocalsOnly);
Dsymbol *symtabInsert(Dsymbol *s);
Expand Down