LICENSE
README.md
pyproject.toml
src/jsharp/__init__.py
src/jsharp/ast_nodes.py
src/jsharp/builtins.py
src/jsharp/bytecode.py
src/jsharp/bytecode_io.py
src/jsharp/cli.py
src/jsharp/compiler.py
src/jsharp/errors.py
src/jsharp/lexer.py
src/jsharp/parser.py
src/jsharp/tokens.py
src/jsharp/values.py
src/jsharp/vm.py
src/jsharp.egg-info/PKG-INFO
src/jsharp.egg-info/SOURCES.txt
src/jsharp.egg-info/dependency_links.txt
src/jsharp.egg-info/entry_points.txt
src/jsharp.egg-info/requires.txt
src/jsharp.egg-info/top_level.txt
src/jsharp/stdlib/__init__.py
src/jsharp/stdlib/fs.py
src/jsharp/stdlib/http.py
src/jsharp/stdlib/io.py
src/jsharp/stdlib/jsonlib.py
tests/test_build_bytecode.py
tests/test_compiler_vm_arith.py
tests/test_compiler_vm_control_flow.py
tests/test_compiler_vm_functions.py
tests/test_compiler_vm_loop_control.py
tests/test_dump_disasm.py
tests/test_fn_literals.py
tests/test_lexer.py
tests/test_lists.py
tests/test_native_compat.py
tests/test_parser.py
tests/test_web_bridge_smoke.py