lucidaflow 1.0.2__tar.gz → 1.0.4__tar.gz
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.
Potentially problematic release.
This version of lucidaflow might be problematic. Click here for more details.
- {lucidaflow-1.0.2/src/lucidaflow.egg-info → lucidaflow-1.0.4}/PKG-INFO +1 -1
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/pyproject.toml +1 -1
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lib/dado.py +1 -1
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lib/json.py +1 -1
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lib/web.py +1 -1
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_stdlib.py +3 -3
- {lucidaflow-1.0.2 → lucidaflow-1.0.4/src/lucidaflow.egg-info}/PKG-INFO +1 -1
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/LICENSE +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/README.md +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/setup.cfg +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/__init__.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/cli.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lib/__init__.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_analyzer.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_ast.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_errors.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_interpreter.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_lexer.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_parser.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow/lucida_symbols.py +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow.egg-info/SOURCES.txt +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow.egg-info/dependency_links.txt +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow.egg-info/entry_points.txt +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow.egg-info/requires.txt +0 -0
- {lucidaflow-1.0.2 → lucidaflow-1.0.4}/src/lucidaflow.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lucidaflow
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Uma linguagem de script moderna, extensível e com tipagem gradual, implementada em Python.
|
|
5
5
|
Author-email: Marco Lago <marconeed2@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/marconeed/Lucida-Flow
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "lucidaflow"
|
|
9
|
-
version = "1.0.
|
|
9
|
+
version = "1.0.4" # Aumentei a versão para a nova publicação
|
|
10
10
|
authors = [
|
|
11
11
|
{ name="Marco Lago", email="marconeed2@gmail.com" },
|
|
12
12
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# lib/dado.py
|
|
2
2
|
import random
|
|
3
|
-
from lucidaflow
|
|
3
|
+
from lucidaflow.lucida_symbols import VarSymbol, BuiltInFunctionSymbol, ScopedSymbolTable, BuiltInTypeSymbol
|
|
4
4
|
|
|
5
5
|
# --- Lógica de Runtime ---
|
|
6
6
|
def lf_d6(args):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# lib/json.py
|
|
2
2
|
import json
|
|
3
|
-
from lucidaflow
|
|
3
|
+
from lucidaflow.lucida_symbols import VarSymbol, BuiltInFunctionSymbol, ScopedSymbolTable, BuiltInTypeSymbol
|
|
4
4
|
|
|
5
5
|
# --- PARTE 1: Lógica de Runtime ---
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# lib/web.py
|
|
2
2
|
import requests
|
|
3
|
-
from lucidaflow
|
|
3
|
+
from lucidaflow.lucida_symbols import VarSymbol, BuiltInFunctionSymbol, ScopedSymbolTable, BuiltInTypeSymbol
|
|
4
4
|
|
|
5
5
|
# --- PARTE 1: Lógica de Runtime ---
|
|
6
6
|
|
|
@@ -6,9 +6,9 @@ import time
|
|
|
6
6
|
import os
|
|
7
7
|
import datetime
|
|
8
8
|
|
|
9
|
-
from
|
|
10
|
-
from
|
|
11
|
-
from
|
|
9
|
+
from lib.web import NATIVE_WEB_MODULE, register_semantics as register_web_semantics
|
|
10
|
+
from lib.json import NATIVE_JSON_MODULE, register_semantics as register_json_semantics
|
|
11
|
+
from lib.dado import NATIVE_DADO_MODULE, register_semantics as register_dado_semantics
|
|
12
12
|
|
|
13
13
|
# --- Importações dos Símbolos da Lucida-Flow ---
|
|
14
14
|
# (Necessário para a parte de descrição semântica)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lucidaflow
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: Uma linguagem de script moderna, extensível e com tipagem gradual, implementada em Python.
|
|
5
5
|
Author-email: Marco Lago <marconeed2@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/marconeed/Lucida-Flow
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|