mirror of
https://github.com/irmen/prog8.git
synced 2024-11-25 19:31:36 +00:00
* ModuleImporter: make tests pass
This commit is contained in:
parent
b071a58ca7
commit
b6f780d70d
@ -4,7 +4,6 @@ import org.antlr.v4.runtime.*
|
||||
import prog8.ast.IStringEncoding
|
||||
import prog8.ast.Module
|
||||
import prog8.ast.Program
|
||||
import prog8.ast.antlr.toAst
|
||||
import prog8.ast.base.Position
|
||||
import prog8.ast.base.SyntaxError
|
||||
import prog8.ast.statements.Directive
|
||||
@ -41,10 +40,21 @@ class ModuleImporter(private val program: Program,
|
||||
if(!Files.isReadable(filePath))
|
||||
throw ParsingFailedError("No such file: $filePath")
|
||||
|
||||
val content = filePath.toFile().readText()
|
||||
val cs = CharStreams.fromString(content)
|
||||
val module = Prog8Parser.parseModule(filePath)
|
||||
|
||||
return importModule(cs, filePath)
|
||||
module.program = program
|
||||
module.linkParents(program.namespace)
|
||||
program.modules.add(module)
|
||||
|
||||
// accept additional imports
|
||||
val lines = module.statements.toMutableList()
|
||||
lines.asSequence()
|
||||
.mapIndexed { i, it -> i to it }
|
||||
.filter { (it.second as? Directive)?.directive == "%import" }
|
||||
.forEach { executeImportDirective(it.second as Directive, filePath) }
|
||||
|
||||
module.statements = lines
|
||||
return module
|
||||
}
|
||||
|
||||
fun importLibraryModule(name: String): Module? {
|
||||
|
Loading…
Reference in New Issue
Block a user