robotcode-robot 2.5.1__tar.gz → 2.6.0__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.
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/.gitignore +5 -1
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/PKG-INFO +2 -2
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/pyproject.toml +1 -1
- robotcode_robot-2.6.0/src/robotcode/robot/__version__.py +1 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/config/model.py +802 -94
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/config/utils.py +31 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/analyzer_result.py +26 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/data_cache.py +104 -26
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/diagnostic_rules.py +12 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/document_cache_helper.py +26 -6
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/errors.py +3 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/imports_manager.py +5 -1
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/library_doc.py +398 -247
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/model_helper.py +3 -10
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/namespace.py +37 -1
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/namespace_analyzer.py +375 -34
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/__init__.py +78 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/analyzer.py +4160 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/enums.py +201 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/model.py +378 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/nodes.py +451 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/run_keyword.py +49 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/serialization.py +118 -0
- robotcode_robot-2.6.0/src/robotcode/robot/diagnostics/semantic_analyzer/variable_tokenizer.py +873 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/workspace_config.py +7 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/variables.py +40 -0
- robotcode_robot-2.5.1/src/robotcode/robot/__version__.py +0 -1
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/README.md +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/__init__.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/config/__init__.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/config/loader.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/__init__.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/diagnostics_modifier.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/entities.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/import_resolver.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/keyword_finder.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/project_index.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/scope_tree.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/diagnostics/variable_scope.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/py.typed +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/__init__.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/ast.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/markdownformatter.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/match.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/robot_patching.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/robot_path.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/stubs.py +0 -0
- {robotcode_robot-2.5.1 → robotcode_robot-2.6.0}/src/robotcode/robot/utils/visitor.py +0 -0
|
@@ -331,7 +331,7 @@ output.xml
|
|
|
331
331
|
bundled/libs
|
|
332
332
|
|
|
333
333
|
# robotframework
|
|
334
|
-
results/
|
|
334
|
+
/results/
|
|
335
335
|
|
|
336
336
|
# kilocode
|
|
337
337
|
.kilocode/
|
|
@@ -339,3 +339,7 @@ results/
|
|
|
339
339
|
# .agents
|
|
340
340
|
.agents/
|
|
341
341
|
skills-lock.json
|
|
342
|
+
.claude
|
|
343
|
+
|
|
344
|
+
# sarif files
|
|
345
|
+
/**/*.sarif.json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode-robot
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.6.0
|
|
4
4
|
Summary: Support classes for RobotCode for handling Robot Framework projects.
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -26,7 +26,7 @@ Classifier: Topic :: Utilities
|
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.10
|
|
28
28
|
Requires-Dist: platformdirs>=4.3
|
|
29
|
-
Requires-Dist: robotcode-core
|
|
29
|
+
Requires-Dist: robotcode-core==2.6.0
|
|
30
30
|
Requires-Dist: robotframework>=5.0.0
|
|
31
31
|
Requires-Dist: tomli>=1.1.0; python_version < '3.11'
|
|
32
32
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.6.0"
|