LICENSE
README.md
pyproject.toml
shell.py
omilang.egg-info/PKG-INFO
omilang.egg-info/SOURCES.txt
omilang.egg-info/dependency_links.txt
omilang.egg-info/entry_points.txt
omilang.egg-info/top_level.txt
src/arrow.py
src/position.py
src/preprocessor.py
src/tokens.py
src/error/error.py
src/error/message/expectedchar.py
src/error/message/illegalchar.py
src/error/message/invalidsyntax.py
src/error/message/rt.py
src/linter/__init__.py
src/linter/config.py
src/linter/context.py
src/linter/fixer.py
src/linter/report.py
src/linter/rule.py
src/linter/runner.py
src/main/interpret.py
src/main/lexer.py
src/main/symboltable.py
src/main/interpreter/control_flow.py
src/main/interpreter/core.py
src/main/interpreter/functions_async.py
src/main/interpreter/modules_directives.py
src/main/interpreter/testing.py
src/main/parser/base.py
src/main/parser/control.py
src/main/parser/expressions_statements.py
src/main/parser/helpers.py
src/main/parser/parser.py
src/main/parser/result.py
src/main/parser/testing.py
src/main/parser/types.py
src/nodes/block.py
src/nodes/shell.py
src/nodes/condition/ifN.py
src/nodes/control/asyncgroup.py
src/nodes/control/flow.py
src/nodes/directives/setN.py
src/nodes/directives/typealiasN.py
src/nodes/directives/useN.py
src/nodes/function/awaitN.py
src/nodes/function/call.py
src/nodes/function/funcdef.py
src/nodes/imports/importN.py
src/nodes/imports/moduleaccess.py
src/nodes/jump/breakN.py
src/nodes/jump/continueN.py
src/nodes/jump/returnN.py
src/nodes/loops/forN.py
src/nodes/loops/whileN.py
src/nodes/ops/binop.py
src/nodes/ops/nullcoal.py
src/nodes/ops/ternaryop.py
src/nodes/ops/unaryop.py
src/nodes/testing/expect.py
src/nodes/testing/hook.py
src/nodes/testing/suite.py
src/nodes/testing/testcase.py
src/nodes/types/dict.py
src/nodes/types/enumdef.py
src/nodes/types/fstring.py
src/nodes/types/list.py
src/nodes/types/number.py
src/nodes/types/string.py
src/nodes/types/subscript.py
src/nodes/types/traitdef.py
src/nodes/types/typeannotation.py
src/nodes/variables/access.py
src/nodes/variables/assign.py
src/run/async_runtime.py
src/run/context.py
src/run/run.py
src/run/runtime.py
src/run/source.py
src/run/test_runner.py
src/run/typecheck.py
src/stdlib/files.py
src/stdlib/http.py
src/stdlib/json.py
src/stdlib/log.py
src/stdlib/math.py
src/stdlib/paths.py
src/stdlib/python.py
src/stdlib/regex.py
src/stdlib/string.py
src/stdlib/system.py
src/stdlib/time.py
src/stdlib/txt.py
src/values/async_group.py
src/values/convert.py
src/values/future.py
src/values/value.py
src/values/function/base.py
src/values/function/buildin.py
src/values/function/enumvariant.py
src/values/function/function.py
src/values/function/stdlib.py
src/values/types/boolean.py
src/values/types/dict.py
src/values/types/list.py
src/values/types/module.py
src/values/types/null.py
src/values/types/number.py
src/values/types/pythonlib.py
src/values/types/string.py
src/values/types/void.py
src/var/builtin.py
src/var/constant.py
src/var/flags.py
src/var/keyword.py
src/var/lint.py
src/var/parser.py
src/var/token.py
src/var/type_system.py