diff --git a/CHANGELOG.md b/CHANGELOG.md index 81fed692d..260971b7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to the "robotcode" extension will be documented in this file +## v0.28.2 (2023-03-10) +### Fix +* Correct version of robotcode runner ([`1ba8590`](https://github.com/d-biehl/robotcode/commit/1ba85902bfe8ab2c737658757e8fc76bf7cd19ca)) + ## v0.28.1 (2023-03-10) ### Fix * Source actions are missing in the context menu for versions #129 ([`dd6202a`](https://github.com/d-biehl/robotcode/commit/dd6202af03e9ff09a0140d1d0d5da40db20410a8)) diff --git a/package.json b/package.json index 33347cc29..d933d2b87 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "RobotFramework support for Visual Studio Code", "icon": "images/icon.png", "publisher": "d-biehl", - "version": "0.28.1", + "version": "0.28.2", "author": { "name": "Daniel Biehl", "url": "https://github.com/d-biehl/" diff --git a/packages/core/robotcode/core/__version__.py b/packages/core/robotcode/core/__version__.py index 67612e9c6..6c302c169 100644 --- a/packages/core/robotcode/core/__version__.py +++ b/packages/core/robotcode/core/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/packages/debugger/robotcode/debugger/__version__.py b/packages/debugger/robotcode/debugger/__version__.py index 67612e9c6..6c302c169 100644 --- a/packages/debugger/robotcode/debugger/__version__.py +++ b/packages/debugger/robotcode/debugger/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/packages/jsonrpc2/robotcode/jsonrpc2/__version__.py b/packages/jsonrpc2/robotcode/jsonrpc2/__version__.py index 67612e9c6..6c302c169 100644 --- a/packages/jsonrpc2/robotcode/jsonrpc2/__version__.py +++ b/packages/jsonrpc2/robotcode/jsonrpc2/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/packages/language_server/robotcode/language_server/__version__.py b/packages/language_server/robotcode/language_server/__version__.py index 67612e9c6..6c302c169 100644 --- a/packages/language_server/robotcode/language_server/__version__.py +++ b/packages/language_server/robotcode/language_server/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/packages/modifiers/robotcode/modifiers/__version__.py b/packages/modifiers/robotcode/modifiers/__version__.py index 67612e9c6..6c302c169 100644 --- a/packages/modifiers/robotcode/modifiers/__version__.py +++ b/packages/modifiers/robotcode/modifiers/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/packages/plugin/robotcode/plugin/__version__.py b/packages/plugin/robotcode/plugin/__version__.py index 67612e9c6..6c302c169 100644 --- a/packages/plugin/robotcode/plugin/__version__.py +++ b/packages/plugin/robotcode/plugin/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/packages/runner/robotcode/runner/__version__.py b/packages/runner/robotcode/runner/__version__.py index ae6d3cad4..6c302c169 100644 --- a/packages/runner/robotcode/runner/__version__.py +++ b/packages/runner/robotcode/runner/__version__.py @@ -1 +1 @@ -__version__ = "0.27.2" +__version__ = "0.28.2" diff --git a/pyproject.toml b/pyproject.toml index ad473cdec..1b8365869 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -161,6 +161,12 @@ style = ["ruff .", "black --check --diff ."] fmt = ["ruff --fix .", "black .", "style"] all = ["style", "typing"] +[tool.hatch.envs.pages] +detached = true +dependencies = ["mkdocs>=1.4.2", "mkdocs-material"] + +[tool.hatch.envs.pages.scripts] +build = ["mkdocs build"] [tool.hatch.envs.build] detached = true @@ -184,7 +190,7 @@ version_variable = [ "packages/language_server/robotcode/language_server/__version__.py:__version__", "packages/modifiers/robotcode/modifiers/__version__.py:__version__", "packages/plugin/robotcode/plugin/__version__.py:__version__", - "packages/plugin/robotcode/plugin/__version__.py:__version__", + "packages/runner/robotcode/runner/__version__.py:__version__", ] version_pattern = ['package.json:"version": "{version}"'] diff --git a/robotcode/cli/__version__.py b/robotcode/cli/__version__.py index 67612e9c6..6c302c169 100644 --- a/robotcode/cli/__version__.py +++ b/robotcode/cli/__version__.py @@ -1 +1 @@ -__version__ = "0.28.1" +__version__ = "0.28.2" diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out new file mode 100644 index 000000000..2c211cb23 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out new file mode 100644 index 000000000..33814ab2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out new file mode 100644 index 000000000..bdf785a43 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out new file mode 100644 index 000000000..e783ecb82 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out new file mode 100644 index 000000000..29c6cd351 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out new file mode 100644 index 000000000..3a2ff98d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out new file mode 100644 index 000000000..44cef3e25 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out new file mode 100644 index 000000000..a56de5f5f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out new file mode 100644 index 000000000..d52e17869 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 46 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out new file mode 100644 index 000000000..8e6e3c621 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out new file mode 100644 index 000000000..8b41d1d31 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 27 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out new file mode 100644 index 000000000..e1a936df6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 37 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out new file mode 100644 index 000000000..db5eda105 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out new file mode 100644 index 000000000..402cd1d2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 38 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out new file mode 100644 index 000000000..3d6aa75f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 60 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out new file mode 100644 index 000000000..efe5ee87f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out new file mode 100644 index 000000000..1c2ad72a6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out new file mode 100644 index 000000000..b0e4c1487 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 23 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..c1ae21ae2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..57d7426c7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..d82d18ba4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 23 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out new file mode 100644 index 000000000..b74481f13 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out new file mode 100644 index 000000000..7ce30883f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out new file mode 100644 index 000000000..7f65dbda2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 36 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..eebcded84 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 14 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..b5d3800be --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..a4af31fdf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 27 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..081d042ed --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..f711b079f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 22 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..a5d6790f1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 28 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..e77e14999 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..0443479fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..930a1cf64 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 39 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out new file mode 100644 index 000000000..0e7e0b43a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out new file mode 100644 index 000000000..267023bc0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out new file mode 100644 index 000000000..0d4375227 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..199f9219b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..5735ec1d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..e4b71eb0b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 25 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..de4d9ba07 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..5f272f7f2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 25 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..bd08e2e6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out new file mode 100644 index 000000000..e30cafe37 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out new file mode 100644 index 000000000..6b869b0f7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out new file mode 100644 index 000000000..13fe5e3eb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 39 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out new file mode 100644 index 000000000..31096390d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 17 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out new file mode 100644 index 000000000..dcde2aaf6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 30 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out new file mode 100644 index 000000000..acfbf8c09 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out new file mode 100644 index 000000000..8b63cad48 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 18 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out new file mode 100644 index 000000000..5c422d0b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 30 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out new file mode 100644 index 000000000..4229b34e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 42 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..4bb675518 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..f134daaba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..dc2d7cf29 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..fdbcd49fc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..954a91b24 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..3a0d6e837 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 49 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..65844b51f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..1af1ab96f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..213a1ca7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..23c903226 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..40c9b1683 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..d42107df8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 33 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..b26b2cc75 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..744b86c97 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 14 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..33cb7c4d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 24 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..1599da623 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..d63262fe3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..5fd7179fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out new file mode 100644 index 000000000..f94f815a8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out new file mode 100644 index 000000000..5c7b2c0ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out new file mode 100644 index 000000000..65b313664 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 24 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..67291f8fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..38365fe51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..78437caf9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 24 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..4ddb37955 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..e29b30ce3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..4b2196459 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out new file mode 100644 index 000000000..0703bfa9e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out new file mode 100644 index 000000000..2e9536024 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out new file mode 100644 index 000000000..9ee6a8768 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 11 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..e8504290b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..a338106b1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..615ee7b82 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out new file mode 100644 index 000000000..9302a4ea3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out new file mode 100644 index 000000000..162c1aee2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out new file mode 100644 index 000000000..2f895031e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_discovering.test_workspace_discovery.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_discovering.test_workspace_discovery.out index 036a65fee..280350adc 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_discovering.test_workspace_discovery.out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_discovering.test_workspace_discovery.out @@ -66,6 +66,102 @@ result: tags: null type: suite uri: tests/bddstyle.robot + - children: + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.first;28 + label: first + longname: Data.Tests.Code Action Show Documentation.first + range: + end: + character: 0 + line: 27 + start: + character: 0 + line: 27 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.second;40 + label: second + longname: Data.Tests.Code Action Show Documentation.second + range: + end: + character: 0 + line: 39 + start: + character: 0 + line: 39 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.third;46 + label: third + longname: Data.Tests.Code Action Show Documentation.third + range: + end: + character: 0 + line: 45 + start: + character: 0 + line: 45 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.forth;52 + label: forth + longname: Data.Tests.Code Action Show Documentation.forth + range: + end: + character: 0 + line: 51 + start: + character: 0 + line: 51 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.fifth;61 + label: fifth + longname: Data.Tests.Code Action Show Documentation.fifth + range: + end: + character: 0 + line: 60 + start: + character: 0 + line: 60 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + description: null + error: null + id: Data.Tests.Code Action Show Documentation + label: Code Action Show Documentation + longname: Data.Tests.Code Action Show Documentation + range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + tags: null + type: suite + uri: tests/code_action_show_documentation.robot - children: - children: - children: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-016-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-016-a_builtin_library].out index f5db0fc33..abde47f13 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-016-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-016-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-021-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-021-a_builtin_library].out index c3430ce94..59aa65b43 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-021-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-021-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-026-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-026-a_builtin_library].out index 8937fb2c2..c9e936143 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-026-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-001-026-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-018-Variable_in_library_import_path].out index 7f1e709ad..ade03c9e6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-018-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-018-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-021-Variable_in_library_import_path].out index 51c838615..e10630f33 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-021-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-021-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-023-Variable_in_library_import_path].out index cf98c27a4..8fc8319a6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-023-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-023-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-030-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-030-a_custom_library_with_path].out index 84a4200d2..bbc852f4b 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-030-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-030-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-037-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-037-a_custom_library_with_path].out index bf1d4de46..b42c22961 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-037-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-037-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-043-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-043-a_custom_library_with_path].out index 8e0f73268..e1c8313e4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-043-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-003-043-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out index 3c8398adb..72b470ce5 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out index b4650bfaf..2896b99ce 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out index fabd1b8d0..20bb9c8b1 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-033-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-033-a_variable_import].out index 79e354cbe..3fbd8539a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-033-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-033-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-040-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-040-a_variable_import].out index 036de05e8..3dc2a6a5a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-040-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-040-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-046-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-046-a_variable_import].out index 30f2650b7..1d9e104d7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-046-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-006-046-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out index d15b9e93f..7b010a1e9 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out index 7505fac40..9f23482dd 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out index 8ff6acdfa..d26b38d6a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-016-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-016-a_custom_library].out index 2d1bcde1a..8a73dc94c 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-016-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-016-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-020-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-020-a_custom_library].out index a4d76af8f..dcbce1436 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-020-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-020-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-023-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-023-a_custom_library].out index 13565c337..b5ec0f2c4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-023-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-011-023-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-016-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-016-a_same_custom_library].out index 2f3eb0f06..c97e767cb 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-016-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-016-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-020-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-020-a_same_custom_library].out index f7b9cdf18..8d57d7068 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-020-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-020-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-023-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-023-a_same_custom_library].out index 1895978a4..b48fe25c8 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-023-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-013-023-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out index 381556090..32e4634a7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out index 99b98aeef..7eb3c7b7d 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out index 6407ea10c..1460d528a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out index 2e8f75f25..ffc60b9b7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out index a442efd41..2a52f68da 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out index fc6183c91..180aed306 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-015-fixture_keyword_call].out index 9af832ea0..60bdba29f 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-015-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-015-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-022-fixture_keyword_call].out index dcae67b82..9d0352187 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-022-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-022-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-028-fixture_keyword_call].out index d2a2e7319..2810ebfbe 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-028-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-030-028-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out index 40b5b14c7..e1b817d7e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out index 3ef9e7ce4..65afdeaa1 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out index cb72221a8..735b0b249 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-004-simple_keyword_call].out index 80472cf24..689441b93 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-004-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-004-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-005-simple_keyword_call].out index 51f4e3be4..0394e380f 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-005-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-005-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-006-simple_keyword_call].out index a76b60507..6095ef941 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-006-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-034-006-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-multiple_references].out index a6a9b2165..5d9495d6e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-004-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-011-multiple_references].out index 511f9931a..1dcd36b5e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-011-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-011-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-017-multiple_references].out index 6e47a8bfd..c71f22ccf 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-017-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-036-017-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-012-multiple_references_with_namespace].out index 38bfefb25..e5796c250 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-012-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-012-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-019-multiple_references_with_namespace].out index 4acb8cdd4..fe9a4979e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-019-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-019-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-025-multiple_references_with_namespace].out index 6c32c4f47..e9abe5e02 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-025-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-038-025-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-013-a_var_from_resource].out index a82a7e4f1..ceecec4ef 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-013-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-013-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-022-a_var_from_resource].out index 5dbb30aa7..e33dd2e1e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-022-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-022-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-030-a_var_from_resource].out index 48ee339e6..82072ae55 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-030-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-041-030-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-018-template_keyword].out index 3ec4cdf10..3205b2f84 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-018-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-018-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-025-template_keyword].out index e395af555..161968b2a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-025-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-025-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-031-template_keyword].out index 523cecab7..073debb6d 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-031-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-045-031-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-026-template_keyword_with_namespace].out index 784d1ebef..250465452 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-026-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-026-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-033-template_keyword_with_namespace].out index a958be14a..29064eea3 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-033-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-033-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-039-template_keyword_with_namespace].out index c7cfde7dc..94cbfddb7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-039-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf41/test_references.test[references.robot-051-039-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 2961 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out new file mode 100644 index 000000000..2c211cb23 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out new file mode 100644 index 000000000..33814ab2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out new file mode 100644 index 000000000..bdf785a43 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out new file mode 100644 index 000000000..e783ecb82 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out new file mode 100644 index 000000000..29c6cd351 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out new file mode 100644 index 000000000..3a2ff98d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out new file mode 100644 index 000000000..44cef3e25 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out new file mode 100644 index 000000000..a56de5f5f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out new file mode 100644 index 000000000..d52e17869 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 46 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out new file mode 100644 index 000000000..8e6e3c621 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out new file mode 100644 index 000000000..8b41d1d31 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 27 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out new file mode 100644 index 000000000..e1a936df6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 37 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out new file mode 100644 index 000000000..db5eda105 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out new file mode 100644 index 000000000..402cd1d2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 38 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out new file mode 100644 index 000000000..3d6aa75f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 60 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out new file mode 100644 index 000000000..efe5ee87f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out new file mode 100644 index 000000000..1c2ad72a6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out new file mode 100644 index 000000000..b0e4c1487 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 23 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..c1ae21ae2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..57d7426c7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..d82d18ba4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 23 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out new file mode 100644 index 000000000..b74481f13 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out new file mode 100644 index 000000000..7ce30883f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out new file mode 100644 index 000000000..7f65dbda2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 36 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..eebcded84 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 14 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..b5d3800be --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..a4af31fdf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 27 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..081d042ed --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..f711b079f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 22 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..a5d6790f1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 28 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..e77e14999 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..0443479fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..930a1cf64 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 39 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out new file mode 100644 index 000000000..0e7e0b43a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out new file mode 100644 index 000000000..267023bc0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out new file mode 100644 index 000000000..0d4375227 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..199f9219b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..5735ec1d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..e4b71eb0b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 25 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..de4d9ba07 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..5f272f7f2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 25 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..bd08e2e6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out new file mode 100644 index 000000000..e30cafe37 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out new file mode 100644 index 000000000..6b869b0f7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out new file mode 100644 index 000000000..13fe5e3eb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 39 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out new file mode 100644 index 000000000..31096390d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 17 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out new file mode 100644 index 000000000..dcde2aaf6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 30 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out new file mode 100644 index 000000000..acfbf8c09 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out new file mode 100644 index 000000000..8b63cad48 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 18 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out new file mode 100644 index 000000000..5c422d0b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 30 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out new file mode 100644 index 000000000..4229b34e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 42 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..4bb675518 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..f134daaba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..dc2d7cf29 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..fdbcd49fc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..954a91b24 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..3a0d6e837 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 49 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..65844b51f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..1af1ab96f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..213a1ca7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..23c903226 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..40c9b1683 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..d42107df8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 33 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..b26b2cc75 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..744b86c97 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 14 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..33cb7c4d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 24 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..1599da623 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..d63262fe3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..5fd7179fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out new file mode 100644 index 000000000..f94f815a8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out new file mode 100644 index 000000000..5c7b2c0ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out new file mode 100644 index 000000000..65b313664 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 24 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..67291f8fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..38365fe51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..78437caf9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 24 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..4ddb37955 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..e29b30ce3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..4b2196459 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out new file mode 100644 index 000000000..0703bfa9e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out new file mode 100644 index 000000000..2e9536024 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out new file mode 100644 index 000000000..9ee6a8768 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 11 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..e8504290b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..a338106b1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..615ee7b82 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out new file mode 100644 index 000000000..9302a4ea3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out new file mode 100644 index 000000000..162c1aee2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out new file mode 100644 index 000000000..2f895031e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_discovering.test_workspace_discovery.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_discovering.test_workspace_discovery.out index 8b4564406..f9c317d03 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_discovering.test_workspace_discovery.out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_discovering.test_workspace_discovery.out @@ -66,6 +66,102 @@ result: tags: null type: suite uri: tests/bddstyle.robot + - children: + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.first;28 + label: first + longname: Data.Tests.Code Action Show Documentation.first + range: + end: + character: 0 + line: 27 + start: + character: 0 + line: 27 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.second;40 + label: second + longname: Data.Tests.Code Action Show Documentation.second + range: + end: + character: 0 + line: 39 + start: + character: 0 + line: 39 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.third;46 + label: third + longname: Data.Tests.Code Action Show Documentation.third + range: + end: + character: 0 + line: 45 + start: + character: 0 + line: 45 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.forth;52 + label: forth + longname: Data.Tests.Code Action Show Documentation.forth + range: + end: + character: 0 + line: 51 + start: + character: 0 + line: 51 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.fifth;61 + label: fifth + longname: Data.Tests.Code Action Show Documentation.fifth + range: + end: + character: 0 + line: 60 + start: + character: 0 + line: 60 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + description: null + error: null + id: Data.Tests.Code Action Show Documentation + label: Code Action Show Documentation + longname: Data.Tests.Code Action Show Documentation + range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + tags: null + type: suite + uri: tests/code_action_show_documentation.robot - children: - children: - children: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-016-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-016-a_builtin_library].out index f5db0fc33..abde47f13 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-016-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-016-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-021-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-021-a_builtin_library].out index c3430ce94..59aa65b43 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-021-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-021-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-026-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-026-a_builtin_library].out index 8937fb2c2..c9e936143 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-026-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-001-026-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-018-Variable_in_library_import_path].out index 7f1e709ad..ade03c9e6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-018-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-018-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-021-Variable_in_library_import_path].out index 51c838615..e10630f33 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-021-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-021-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-023-Variable_in_library_import_path].out index cf98c27a4..8fc8319a6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-023-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-023-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-030-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-030-a_custom_library_with_path].out index 84a4200d2..bbc852f4b 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-030-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-030-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-037-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-037-a_custom_library_with_path].out index bf1d4de46..b42c22961 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-037-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-037-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-043-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-043-a_custom_library_with_path].out index 8e0f73268..e1c8313e4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-043-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-003-043-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out index 3c8398adb..72b470ce5 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out index b4650bfaf..2896b99ce 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out index fabd1b8d0..20bb9c8b1 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-033-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-033-a_variable_import].out index 79e354cbe..3fbd8539a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-033-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-033-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-040-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-040-a_variable_import].out index 036de05e8..3dc2a6a5a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-040-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-040-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-046-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-046-a_variable_import].out index 30f2650b7..1d9e104d7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-046-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-006-046-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out index d15b9e93f..7b010a1e9 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out index 7505fac40..9f23482dd 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out index 8ff6acdfa..d26b38d6a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-016-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-016-a_custom_library].out index 2d1bcde1a..8a73dc94c 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-016-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-016-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-020-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-020-a_custom_library].out index a4d76af8f..dcbce1436 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-020-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-020-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-023-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-023-a_custom_library].out index 13565c337..b5ec0f2c4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-023-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-011-023-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-016-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-016-a_same_custom_library].out index 2f3eb0f06..c97e767cb 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-016-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-016-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-020-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-020-a_same_custom_library].out index f7b9cdf18..8d57d7068 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-020-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-020-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-023-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-023-a_same_custom_library].out index 1895978a4..b48fe25c8 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-023-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-013-023-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out index 4e75e742c..563223255 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out index 5023e193d..38a0c661f 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out index b1ae60952..176636cab 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out index 2bf698f77..7f1c9a35f 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out index ab516c656..41394d154 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out index c250756d3..744745aaf 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-015-fixture_keyword_call].out index 6487817d2..c2d4909e3 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-015-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-015-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-022-fixture_keyword_call].out index c0191fa49..51156c39c 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-022-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-022-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-028-fixture_keyword_call].out index 02ee74153..84cdc438f 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-028-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-030-028-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out index b3a256390..88fef4d34 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out index 3781b2b4b..db91442df 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out index 43669fb80..67576c6a6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-004-simple_keyword_call].out index 1bbafdcfb..23b090022 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-004-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-004-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-005-simple_keyword_call].out index a1108b7a3..b89f468ec 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-005-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-005-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-006-simple_keyword_call].out index a6485fc5f..1fd8eec38 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-006-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-034-006-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-multiple_references].out index c7b31eebd..03a281d8b 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-004-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-011-multiple_references].out index c1e80c939..7d30c6795 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-011-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-011-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-017-multiple_references].out index fe3f6753d..28ea9a3ae 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-017-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-036-017-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-012-multiple_references_with_namespace].out index 873986a9b..3f015fa16 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-012-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-012-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-019-multiple_references_with_namespace].out index cfb7927fd..9668a711a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-019-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-019-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-025-multiple_references_with_namespace].out index 03084f3d3..7a004236a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-025-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-038-025-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-013-a_var_from_resource].out index a82a7e4f1..ceecec4ef 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-013-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-013-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-022-a_var_from_resource].out index 5dbb30aa7..e33dd2e1e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-022-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-022-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-030-a_var_from_resource].out index 48ee339e6..82072ae55 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-030-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-041-030-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-018-template_keyword].out index 0fc47b120..9e948bf7e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-018-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-018-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-025-template_keyword].out index 61bc730a8..9241d0205 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-025-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-025-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-031-template_keyword].out index 8d39bd9fb..60bd92c00 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-031-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-045-031-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-026-template_keyword_with_namespace].out index aba784d99..b4a078f69 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-026-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-026-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-033-template_keyword_with_namespace].out index 916ba296d..662b8e073 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-033-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-033-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-039-template_keyword_with_namespace].out index c2cb13160..753a3c905 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-039-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf50/test_references.test[references.robot-051-039-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3022 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out new file mode 100644 index 000000000..2c211cb23 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out new file mode 100644 index 000000000..33814ab2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out new file mode 100644 index 000000000..bdf785a43 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 1 + name: built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out new file mode 100644 index 000000000..e783ecb82 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out new file mode 100644 index 000000000..29c6cd351 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out new file mode 100644 index 000000000..3a2ff98d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 3 + name: user library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out new file mode 100644 index 000000000..44cef3e25 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out new file mode 100644 index 000000000..a56de5f5f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out new file mode 100644 index 000000000..d52e17869 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 46 + line: 5 + name: user library by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out new file mode 100644 index 000000000..8e6e3c621 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out new file mode 100644 index 000000000..8b41d1d31 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 27 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out new file mode 100644 index 000000000..e1a936df6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 37 + line: 8 + name: resource +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out new file mode 100644 index 000000000..db5eda105 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out new file mode 100644 index 000000000..402cd1d2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 38 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out new file mode 100644 index 000000000..3d6aa75f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 60 + line: 10 + name: resource by path with variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out new file mode 100644 index 000000000..efe5ee87f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out new file mode 100644 index 000000000..1c2ad72a6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out new file mode 100644 index 000000000..b0e4c1487 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 23 + line: 12 + name: user library with arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..c1ae21ae2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 16 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..57d7426c7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out new file mode 100644 index 000000000..d82d18ba4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 23 + line: 14 + name: user library with arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out new file mode 100644 index 000000000..b74481f13 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out new file mode 100644 index 000000000..7ce30883f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 26 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out new file mode 100644 index 000000000..7f65dbda2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 36 + line: 16 + name: keyword call from built-in library with namespace in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..eebcded84 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 14 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..b5d3800be --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 21 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out new file mode 100644 index 000000000..a4af31fdf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 27 + line: 18 + name: keyword call from built-in library in Test Setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..081d042ed --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..f711b079f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 22 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out new file mode 100644 index 000000000..a5d6790f1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 28 + line: 28 + name: keyword call from built-in library in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..e77e14999 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..0443479fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out new file mode 100644 index 000000000..930a1cf64 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 39 + line: 30 + name: keyword call from built-in library in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out new file mode 100644 index 000000000..0e7e0b43a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out new file mode 100644 index 000000000..267023bc0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out new file mode 100644 index 000000000..0d4375227 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 32 + name: keyword from built-in library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..199f9219b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..5735ec1d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out new file mode 100644 index 000000000..e4b71eb0b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 25 + line: 35 + name: keyword call from built-in library with namespace +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..de4d9ba07 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..5f272f7f2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 25 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out new file mode 100644 index 000000000..bd08e2e6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 40 + name: keyword call from built-in library in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out new file mode 100644 index 000000000..e30cafe37 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out new file mode 100644 index 000000000..6b869b0f7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out new file mode 100644 index 000000000..13fe5e3eb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 39 + line: 46 + name: keyword call from built-in library with namespace in template +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out new file mode 100644 index 000000000..31096390d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 17 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out new file mode 100644 index 000000000..dcde2aaf6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 30 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out new file mode 100644 index 000000000..acfbf8c09 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 52 + name: keyword call from user library with namespace in assignment +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out new file mode 100644 index 000000000..8b63cad48 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 18 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out new file mode 100644 index 000000000..5c422d0b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 30 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out new file mode 100644 index 000000000..4229b34e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 42 + line: 55 + name: keyword call from user library with namespace in assignment from different + library +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..4bb675518 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..f134daaba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 29 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out new file mode 100644 index 000000000..dc2d7cf29 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 61 + name: keyword call with embedded arguments in setup +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..fdbcd49fc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 18 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..954a91b24 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out new file mode 100644 index 000000000..3a0d6e837 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 49 + line: 63 + name: keyword call with embedded arguments in teardown +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..65844b51f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..1af1ab96f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out new file mode 100644 index 000000000..213a1ca7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 15 + line: 65 + name: keyword call normal arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..23c903226 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..40c9b1683 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out new file mode 100644 index 000000000..d42107df8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 33 + line: 67 + name: keyword call embedded arguments in test case +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..b26b2cc75 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..744b86c97 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 14 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out new file mode 100644 index 000000000..33cb7c4d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 24 + line: 70 + name: keyword call with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..1599da623 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..d63262fe3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out new file mode 100644 index 000000000..5fd7179fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 76 + name: keyword call with embedded arguments and variable +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out new file mode 100644 index 000000000..f94f815a8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out new file mode 100644 index 000000000..5c7b2c0ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out new file mode 100644 index 000000000..65b313664 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 24 + line: 79 + name: error multiple keywords +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..67291f8fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..38365fe51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out new file mode 100644 index 000000000..78437caf9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 24 + line: 81 + name: error multiple keywords ignored +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..4ddb37955 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-001-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..e29b30ce3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-010-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out new file mode 100644 index 000000000..4b2196459 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-087-019-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 87 + name: keyword definition with embedded arguments +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out new file mode 100644 index 000000000..0703bfa9e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out new file mode 100644 index 000000000..2e9536024 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-006-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out new file mode 100644 index 000000000..9ee6a8768 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-011-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 11 + line: 91 + name: keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..e8504290b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-004-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..a338106b1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-005-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out new file mode 100644 index 000000000..615ee7b82 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-094-006-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 94 + name: keyword call in keyword definition +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out new file mode 100644 index 000000000..9302a4ea3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-001-keyword_definition_with_embedded_argum__30572998c9.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out new file mode 100644 index 000000000..162c1aee2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-010-keyword_definition_with_embedded_argum__14ee6d9343.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out new file mode 100644 index 000000000..2f895031e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_code_action_show_documentation.test[code_action_show_documentation.robot-097-019-keyword_definition_with_embedded_argum__bb08cedbe6.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 97 + name: keyword definition with embedded arguments and regex +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source.openDocumentation + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_discovering.test_workspace_discovery.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_discovering.test_workspace_discovery.out index 8b4564406..f9c317d03 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_discovering.test_workspace_discovery.out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_discovering.test_workspace_discovery.out @@ -66,6 +66,102 @@ result: tags: null type: suite uri: tests/bddstyle.robot + - children: + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.first;28 + label: first + longname: Data.Tests.Code Action Show Documentation.first + range: + end: + character: 0 + line: 27 + start: + character: 0 + line: 27 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.second;40 + label: second + longname: Data.Tests.Code Action Show Documentation.second + range: + end: + character: 0 + line: 39 + start: + character: 0 + line: 39 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.third;46 + label: third + longname: Data.Tests.Code Action Show Documentation.third + range: + end: + character: 0 + line: 45 + start: + character: 0 + line: 45 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.forth;52 + label: forth + longname: Data.Tests.Code Action Show Documentation.forth + range: + end: + character: 0 + line: 51 + start: + character: 0 + line: 51 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + - children: null + description: null + error: null + id: Data.Tests.Code Action Show Documentation.fifth;61 + label: fifth + longname: Data.Tests.Code Action Show Documentation.fifth + range: + end: + character: 0 + line: 60 + start: + character: 0 + line: 60 + tags: [] + type: test + uri: tests/code_action_show_documentation.robot + description: null + error: null + id: Data.Tests.Code Action Show Documentation + label: Code Action Show Documentation + longname: Data.Tests.Code Action Show Documentation + range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + tags: null + type: suite + uri: tests/code_action_show_documentation.robot - children: - children: - children: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-016-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-016-a_builtin_library].out index f5db0fc33..abde47f13 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-016-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-016-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-021-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-021-a_builtin_library].out index c3430ce94..59aa65b43 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-021-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-021-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-026-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-026-a_builtin_library].out index 8937fb2c2..c9e936143 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-026-a_builtin_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-001-026-a_builtin_library].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 1 name: a builtin library result: +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-018-Variable_in_library_import_path].out index 7f1e709ad..ade03c9e6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-018-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-018-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-021-Variable_in_library_import_path].out index 51c838615..e10630f33 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-021-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-021-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-023-Variable_in_library_import_path].out index cf98c27a4..8fc8319a6 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-023-Variable_in_library_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-023-Variable_in_library_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 3 name: Variable in library import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-030-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-030-a_custom_library_with_path].out index 84a4200d2..bbc852f4b 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-030-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-030-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-037-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-037-a_custom_library_with_path].out index bf1d4de46..b42c22961 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-037-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-037-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-043-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-043-a_custom_library_with_path].out index 8e0f73268..e1c8313e4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-043-a_custom_library_with_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-003-043-a_custom_library_with_path].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 3 name: a custom library with path result: +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 16 + line: 3 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out index 3c8398adb..72b470ce5 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out index b4650bfaf..2896b99ce 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out index fabd1b8d0..20bb9c8b1 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 6 name: Variable in variables import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-033-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-033-a_variable_import].out index 79e354cbe..3fbd8539a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-033-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-033-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-040-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-040-a_variable_import].out index 036de05e8..3dc2a6a5a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-040-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-040-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-046-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-046-a_variable_import].out index 30f2650b7..1d9e104d7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-046-a_variable_import].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-006-046-a_variable_import].out @@ -3,6 +3,15 @@ data: !GeneratedTestData line: 6 name: a variable import result: +- !Location + range: + end: + character: 47 + line: 7 + start: + character: 16 + line: 7 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out index d15b9e93f..7b010a1e9 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out index 7505fac40..9f23482dd 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out index 8ff6acdfa..d26b38d6a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out @@ -3,6 +3,33 @@ data: !GeneratedTestData line: 9 name: Variable in resource import path result: +- !Location + range: + end: + character: 24 + line: 5 + start: + character: 18 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 7 + start: + character: 18 + line: 7 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 10 + start: + character: 18 + line: 10 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-016-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-016-a_custom_library].out index 2d1bcde1a..8a73dc94c 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-016-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-016-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-020-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-020-a_custom_library].out index a4d76af8f..dcbce1436 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-020-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-020-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-023-a_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-023-a_custom_library].out index 13565c337..b5ec0f2c4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-023-a_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-011-023-a_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 11 name: a custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-016-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-016-a_same_custom_library].out index 2f3eb0f06..c97e767cb 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-016-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-016-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-020-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-020-a_same_custom_library].out index f7b9cdf18..8d57d7068 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-020-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-020-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-023-a_same_custom_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-023-a_same_custom_library].out index 1895978a4..b48fe25c8 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-023-a_same_custom_library].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-013-023-a_same_custom_library].out @@ -3,6 +3,24 @@ data: !GeneratedTestData line: 13 name: a same custom library result: +- !Location + range: + end: + character: 24 + line: 12 + start: + character: 16 + line: 12 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 24 + line: 14 + start: + character: 16 + line: 14 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out index ad1f02300..b55ac2d56 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out index 816490115..410dd4829 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out index 39c746f79..1b6b9c2d1 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out index b76db9acb..8ebdd54a2 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out index 2df0d66c0..f808378be 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out index 0a3b8da76..ca4f4628a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-015-fixture_keyword_call].out index ce3bd04d8..aaf215e86 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-015-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-015-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-022-fixture_keyword_call].out index 0656b17ca..f26427dab 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-022-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-022-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-028-fixture_keyword_call].out index 6a35d2f5e..8d076b7a7 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-028-fixture_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-030-028-fixture_keyword_call].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out index 1d9d1585e..fb4dca9c0 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-026-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out index 4305d38a3..e7e374033 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-033-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out index 816b3759c..7323f849e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-032-039-fixture_keyword_call_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-004-simple_keyword_call].out index 36509a18b..78c03d1ae 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-004-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-004-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-005-simple_keyword_call].out index 83a03522f..53e386b67 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-005-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-005-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-006-simple_keyword_call].out index 62d05e823..98583b76e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-006-simple_keyword_call].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-034-006-simple_keyword_call].out @@ -183,6 +183,141 @@ result: character: 4 line: 6 uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 32 + start: + character: 4 + line: 32 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 94 + start: + character: 4 + line: 94 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 99 + start: + character: 5 + line: 99 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 102 + start: + character: 4 + line: 102 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 103 + start: + character: 4 + line: 103 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 106 + start: + character: 4 + line: 106 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 109 + start: + character: 4 + line: 109 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 112 + start: + character: 4 + line: 112 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 117 + start: + character: 4 + line: 117 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 121 + start: + character: 4 + line: 121 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 122 + start: + character: 4 + line: 122 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 127 + start: + character: 4 + line: 127 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-multiple_references].out index 825d9fee4..f9b8901f5 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-004-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-011-multiple_references].out index 90f60b752..e05a88249 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-011-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-011-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-017-multiple_references].out index 83f00a3cb..313b1d212 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-017-multiple_references].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-036-017-multiple_references].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-012-multiple_references_with_namespace].out index 763452e9a..d81f4fe1b 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-012-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-012-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-019-multiple_references_with_namespace].out index d98c8eecb..d948b59c4 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-019-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-019-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-025-multiple_references_with_namespace].out index d078eb42a..8430b6060 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-025-multiple_references_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-038-025-multiple_references_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-013-a_var_from_resource].out index a82a7e4f1..ceecec4ef 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-013-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-013-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-022-a_var_from_resource].out index 5dbb30aa7..e33dd2e1e 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-022-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-022-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-030-a_var_from_resource].out index 48ee339e6..82072ae55 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-030-a_var_from_resource].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-041-030-a_var_from_resource].out @@ -12,6 +12,15 @@ result: character: 2 line: 1 uri: resources/firstresource.resource +- !Location + range: + end: + character: 31 + line: 37 + start: + character: 13 + line: 37 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-018-template_keyword].out index 99fab4655..282c46657 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-018-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-018-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-025-template_keyword].out index f76872587..003ddc02a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-025-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-025-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-031-template_keyword].out index d12b06e75..41633200a 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-031-template_keyword].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-045-031-template_keyword].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-026-template_keyword_with_namespace].out index e273cc97d..12fba20d2 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-026-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-026-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-033-template_keyword_with_namespace].out index 8f427bfcc..78228717c 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-033-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-033-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-039-template_keyword_with_namespace].out index e0bcab317..ad7387dde 100644 --- a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-039-template_keyword_with_namespace].out +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf60/test_references.test[references.robot-051-039-template_keyword_with_namespace].out @@ -12,6 +12,78 @@ result: character: 0 line: 3055 uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 29 + line: 28 + start: + character: 15 + line: 28 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 30 + start: + character: 26 + line: 30 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 18 + line: 34 + start: + character: 4 + line: 34 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 26 + line: 35 + start: + character: 12 + line: 35 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 32 + line: 40 + start: + character: 18 + line: 40 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 40 + line: 46 + start: + character: 26 + line: 46 + uri: tests/code_action_show_documentation.robot - !Location range: end: diff --git a/tests/robotcode/language_server/robotframework/parts/data/tests/code_action_show_documentation.robot b/tests/robotcode/language_server/robotframework/parts/data/tests/code_action_show_documentation.robot new file mode 100644 index 000000000..e97c40122 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/data/tests/code_action_show_documentation.robot @@ -0,0 +1,128 @@ +*** Settings *** +Library Collections +# ^^^^^^^^^^^ built-in library +Library myvariables +# ^^^^^^^^^^^ user library +Library ${CURDIR}/../lib/myvariables.py +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ user library by path with variable +Variables ${CURDIR}/../lib/myvariables.py +Resource firstresource.resource +# ^^^^^^^^^^^^^^^^^^^^^^ resource +Resource ${CURDIR}/../resources/firstresource.resource +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ resource by path with variable +Library alibrary a_param=from hello WITH NAME lib_hello +# ^^^^^^^^ user library with arguments +Library alibrary a_param=${LIB_ARG} WITH NAME lib_var +# ^^^^^^^^ user library with arguments and variable +Suite Setup BuiltIn.Log To Console hi from suite setup +# ^^^^^^^^^^^^^^^^^^^^^^ keyword call from built-in library with namespace in Test Setup +Test Setup Log To Console hi from test setup +# ^^^^^^^^^^^^^^ keyword call from built-in library in Test Setup + +*** Variables *** +${a var} hello +${LIB_ARG} from lib +${bananas} apples + +*** Test Cases *** +first + [Setup] Log To Console hi ${a var} +# ^^^^^^^^^^^^^^ keyword call from built-in library in setup + [Teardown] BuiltIn.Log To Console hi ${a var} +# ^^^^^^^^^^^^^^^^^^^^^^ keyword call from built-in library in teardown + Log Hi ${a var} +# ^^^ keyword from built-in library + Log To Console hi ${a var} + BuiltIn.Log To Console hi ${a var} +# ^^^^^^^^^^^^^^^^^^^^^^ keyword call from built-in library with namespace + Log ${A_VAR_FROM_RESOURE} + +second + [Template] Log To Console +# ^^^^^^^^^^^^^^ keyword call from built-in library in template + Hi + There + +third + [Template] BuiltIn.Log To Console +# ^^^^^^^^^^^^^^^^^^^^^^ keyword call from built-in library with namespace in template + Hi + There + +forth + ${result} lib_hello.A Library Keyword +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^ keyword call from user library with namespace in assignment + Should Be Equal ${result} from hello + ${result}= lib_var.A Library Keyword +# ^^^^^^^^^^^^^^^^^^^^^^^^^ keyword call from user library with namespace in assignment from different library + Should Be Equal ${result} ${LIB_ARG} + + +fifth + [Setup] do something test setup inner +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ keyword call with embedded arguments in setup + [Teardown] do something test teardown inner +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ keyword call with embedded arguments in teardown + do something cool +# ^^^^^^^^^^^^ keyword call normal arguments in test case + do something cool from keyword +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ keyword call embedded arguments in test case + + add 2 coins to pocket +# ^^^^^^^^^^^^^^^^^^^^^ keyword call with embedded arguments + + add 22134 coins to pocket + add milk and coins to my bag + + do add ${bananas} and to my bag +# ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ keyword call with embedded arguments and variable + + add bananas to pocket +# ^^^^^^^^^^^^^^^^^^^^^ error multiple keywords + add bananas to pocket # robotcode: ignore +# ^^^^^^^^^^^^^^^^^^^^^ error multiple keywords ignored + add bananas and apples to pocket + add bananas and apples to pocket + +*** Keywords *** +do something ${type} +#^^^^^^^^^^^^^^^^^^^ keyword definition with embedded arguments + do something ${type} + +do something +#^^^^^^^^^^^ keyword definition + [Arguments] ${type} + Log done ${type} +# ^^^ keyword call in keyword definition + +add ${number:[0-9]+} coins to ${thing} +#^^^^^^^^^^^^^^^^^^^ keyword definition with embedded arguments and regex + Log added ${number} coins to ${thing} + +add ${what:[a-zA-Z]+} to ${thing} + Log this is duplicated + Log added ${what} to ${thing} + +add ${what:[a-zA-Z]+} to ${thing} + Log added ${what} coins to ${thing} + +add ${what:[a-zA-Z ]+} to ${thing} + Log added ${what} coins to ${thing} + +do add ${bananas} and to my bag + Log ${bananas} + +a keyword with params + [Arguments] ${A VAR}=${A VAR} + Log ${tt} + Log ${A VAR} + +another keyword with params + [Arguments] ${tt} ${A VAR}=${A VAR} + Log ${tt} + Log ${A VAR} + +again a keyword with params + [Arguments] ${a} ${b}=${a} + Log ${a} + Log ${b} diff --git a/tests/robotcode/language_server/robotframework/parts/test_code_action_show_documentation.py b/tests/robotcode/language_server/robotframework/parts/test_code_action_show_documentation.py new file mode 100644 index 000000000..b75c0669e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/test_code_action_show_documentation.py @@ -0,0 +1,73 @@ +import asyncio +from pathlib import Path +from typing import Union + +import pytest +import yaml +from pytest_regtest import RegTestFixture + +from robotcode.language_server.common.lsp_types import ( + CodeAction, + CodeActionContext, + CodeActionKind, + CodeActionTriggerKind, + Command, + Position, + Range, +) +from robotcode.language_server.common.text_document import TextDocument +from robotcode.language_server.robotframework.protocol import ( + RobotLanguageServerProtocol, +) +from tests.robotcode.language_server.robotframework.tools import ( + GeneratedTestData, + generate_test_id, + generate_tests_from_source_document, +) + + +@pytest.mark.parametrize( + ("test_document", "data"), + generate_tests_from_source_document(Path(Path(__file__).parent, "data/tests/code_action_show_documentation.robot")), + indirect=["test_document"], + ids=generate_test_id, + scope="module", +) +@pytest.mark.usefixtures("protocol") +@pytest.mark.asyncio() +async def test( + regtest: RegTestFixture, + protocol: RobotLanguageServerProtocol, + test_document: TextDocument, + data: GeneratedTestData, +) -> None: + def split(action: Union[Command, CodeAction]) -> Union[Command, CodeAction]: + if isinstance(action, CodeAction) and action.command is not None and action.command.arguments: + action.command.arguments = [""] + return action + + result = await asyncio.wait_for( + protocol.robot_code_action_documentation.collect( + protocol.robot_code_action_documentation, + test_document, + Range( + Position(line=data.line, character=data.character), Position(line=data.line, character=data.character) + ), + CodeActionContext( + diagnostics=[], only=[CodeActionKind.SOURCE.value], trigger_kind=CodeActionTriggerKind.INVOKED + ), + ), + 60, + ) + regtest.write( + yaml.dump( + { + "data": data, + "result": sorted( + (split(v) for v in result), key=lambda v: (v.title, v.kind if isinstance(v, CodeAction) else None) + ) + if result + else result, + } + ) + )