Commit 489d0d22 authored by Tom Niget's avatar Tom Niget

Rename stdlib files to prevent naming conflict

parent 7cdc9572
stdout: CppType["auto&"] stdout: CppType["auto&"]
argv: list[str] argv: list[str]
def exit(code: int) -> None: def exit(code: int) -> None:
... ...
\ No newline at end of file
...@@ -57,6 +57,8 @@ def discover_module(path: Path, scope): ...@@ -57,6 +57,8 @@ def discover_module(path: Path, scope):
elif child.suffix == ".py": elif child.suffix == ".py":
mod_scope = PRELUDE.child(ScopeKind.GLOBAL) mod_scope = PRELUDE.child(ScopeKind.GLOBAL)
StdlibVisitor(mod_scope).visit(ast.parse(child.read_text())) StdlibVisitor(mod_scope).visit(ast.parse(child.read_text()))
if child.stem[-1] == "_":
child = child.with_name(child.stem[:-1])
scope.vars[child.stem] = make_mod_decl(child, mod_scope) scope.vars[child.stem] = make_mod_decl(child, mod_scope)
print(f"Visited {child}") print(f"Visited {child}")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment