sprout-language 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sprout_core/__init__.py +15 -0
- sprout_core/__main__.py +10 -0
- sprout_core/analysis.py +1092 -0
- sprout_core/application.py +555 -0
- sprout_core/bytecode.py +1387 -0
- sprout_core/cli.py +453 -0
- sprout_core/conformance/advanced.sprout +16 -0
- sprout_core/conformance/async.sprout +10 -0
- sprout_core/conformance/classes.sprout +9 -0
- sprout_core/conformance/exceptions.sprout +4 -0
- sprout_core/conformance/functions.sprout +9 -0
- sprout_core/conformance/manifest.json +61 -0
- sprout_core/conformance/syntax_error.sprout +1 -0
- sprout_core/conformance/typed.sprout +21 -0
- sprout_core/conformance/values.sprout +6 -0
- sprout_core/distribution.py +331 -0
- sprout_core/docsgen.py +173 -0
- sprout_core/ecosystem.py +783 -0
- sprout_core/lexer.py +164 -0
- sprout_core/model.py +229 -0
- sprout_core/package.py +360 -0
- sprout_core/parser.py +712 -0
- sprout_core/quality.py +201 -0
- sprout_core/registry_server.py +289 -0
- sprout_core/runtime.py +2272 -0
- sprout_core/standalone.py +171 -0
- sprout_core/testing.py +222 -0
- sprout_core/tooling.py +687 -0
- sprout_core/typesystem.py +937 -0
- sprout_language-0.3.0.dist-info/METADATA +1010 -0
- sprout_language-0.3.0.dist-info/RECORD +36 -0
- sprout_language-0.3.0.dist-info/WHEEL +5 -0
- sprout_language-0.3.0.dist-info/entry_points.txt +2 -0
- sprout_language-0.3.0.dist-info/licenses/LICENSE +202 -0
- sprout_language-0.3.0.dist-info/licenses/NOTICE +4 -0
- sprout_language-0.3.0.dist-info/top_level.txt +1 -0
sprout_core/__init__.py
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
from .model import *
|
|
2
|
+
from .lexer import Lexer
|
|
3
|
+
from .parser import Parser
|
|
4
|
+
from .runtime import *
|
|
5
|
+
from .tooling import *
|
|
6
|
+
from .analysis import *
|
|
7
|
+
from .bytecode import *
|
|
8
|
+
from .package import *
|
|
9
|
+
from .application import *
|
|
10
|
+
from .testing import *
|
|
11
|
+
from .docsgen import *
|
|
12
|
+
from .ecosystem import *
|
|
13
|
+
from .distribution import *
|
|
14
|
+
from .standalone import *
|
|
15
|
+
from .cli import brace_balance, repl, main
|