Implement import keyword (#101)

Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
Anand Krishnamoorthi
2024-01-08 01:58:37 -08:00
committed by GitHub
parent 3e1ddac2a9
commit c0fa1c1a42
3 changed files with 112 additions and 3 deletions

View File

@@ -100,6 +100,7 @@ impl Engine {
self.interpreter
.set_functions(gather_functions(&self.modules)?);
self.interpreter.gather_rules()?;
self.interpreter.process_imports()?;
self.prepared = true;
}