Package org.ek9lang.compiler
Class ParsedModules
java.lang.Object
org.ek9lang.compiler.ParsedModules
- All Implemented Interfaces:
Serializable
With EK9 it is possible to have multiple source files that are all in the same 'module'.
This object represents that concept. So the module name is always the same but there can and
will be multiple parsed modules.
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(ParsedModule parsedModule) Add a parsed module to the set all under the same moduleName.Provides an unmodifiable list of parsed modules.void
remove
(ParsedModule parsedModule) Remove an existing parsed module for the set of modules recorded against a specific module name.
-
Constructor Details
-
ParsedModules
-
-
Method Details
-
add
Add a parsed module to the set all under the same moduleName. -
remove
Remove an existing parsed module for the set of modules recorded against a specific module name. -
getParsedModules
Provides an unmodifiable list of parsed modules.
-