From 37c5371919d10a7ea1f46c91f1f7707b63fa96ce Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Thu, 29 May 2025 23:16:03 +0200 Subject: [PATCH 001/110] feat(vscode): add deprecation messages for robotframework-tidy in configuration --- package.json | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index a6cc447f..c7be675b 100644 --- a/package.json +++ b/package.json @@ -1162,19 +1162,22 @@ "type": "boolean", "default": true, "markdownDescription": "Enables 'robotidy' code formatting, if installed. See [robotidy](https://github.com/MarketSquare/robotframework-tidy)", - "scope": "resource" + "scope": "resource", + "markdownDeprecationMessage": "Using of `robotframework-tidy` is deprecated, because it is no longer maintained. Please use `robotframework-robocop>=6.0` instead." }, "robotcode.robotidy.ignoreGitDir": { "type": "boolean", "default": true, "markdownDescription": "Ignore .git directories when searching for the default configuration file. Corresponds to the `--ignore-git-dir` of _robotidy_ See [robotidy](https://github.com/MarketSquare/robotframework-tidy)", - "scope": "resource" + "scope": "resource", + "markdownDeprecationMessage": "Using of `robotframework-tidy` is deprecated, because it is no longer maintained. Please use `robotframework-robocop>=6.0` instead." }, "robotcode.robotidy.config": { "type": "string", "default": "", "markdownDescription": "Read configuration from FILE path. Corresponds to the `--config` of _robotidy_ See [robotidy](https://github.com/MarketSquare/robotframework-tidy)", - "scope": "resource" + "scope": "resource", + "markdownDeprecationMessage": "Using of `robotframework-tidy` is deprecated, because it is no longer maintained. Please use `robotframework-robocop>=6.0` instead." } } }, @@ -1965,4 +1968,4 @@ "workspaces": [ "docs" ] -} +} \ No newline at end of file From 310bc544be8306fb85a329698763b562cd9d85aa Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Fri, 30 May 2025 02:19:55 +0200 Subject: [PATCH 002/110] feat(langserver): implemented robocop 6.0 formatting and deprecate old robotidy --- package.json | 33 ++++- .../core/src/robotcode/core/utils/version.py | 2 + .../robotframework/configuration.py | 3 + .../robotframework/parts/formatting.py | 115 ++++++++++++------ .../robotframework/parts/project_info.py | 25 +--- .../parts/robocop_diagnostics.py | 13 +- .../parts/robocop_tidy_mixin.py | 49 ++++++++ .../src/robotcode/robot/utils/__init__.py | 11 +- .../extension/languageclientsmanger.ts | 2 +- 9 files changed, 176 insertions(+), 77 deletions(-) create mode 100644 packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_tidy_mixin.py diff --git a/package.json b/package.json index c7be675b..19e84715 100644 --- a/package.json +++ b/package.json @@ -1116,13 +1116,13 @@ } }, { - "title": "Linting - Robocop", + "title": "Linting and Formatting - Robocop", "type": "object", "properties": { "robotcode.robocop.enabled": { "type": "boolean", "default": true, - "markdownDescription": "Enables 'robocop' code analysis, if installed. See [robocop](https://github.com/MarketSquare/robotframework-robocop)", + "markdownDescription": "Enables 'robocop' code analysis, if installed. See [robocop](https://robocop.readthedocs.io/)", "scope": "resource" }, "robotcode.robocop.include": { @@ -1132,7 +1132,8 @@ "type": "string" }, "description": "Include specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported", - "scope": "resource" + "scope": "resource", + "markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future" }, "robotcode.robocop.exclude": { "type": "array", @@ -1140,7 +1141,26 @@ "items": { "type": "string" }, - "description": "Exlude specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported", + "description": "Exclude specified 'robocop' rules. You can define rule by its name or id. Glob patterns are supported", + "scope": "resource", + "markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future." + }, + "robotcode.robocop.ignoreGitDir": { + "type": "boolean", + "default": false, + "markdownDescription": "Do not stop searching for config file when .git directory is found. Corresponds to the `--ignore-git-dir` of _robocop_ See [robocop](https://robocop.readthedocs.io/)", + "scope": "resource" + }, + "robotcode.robocop.configFile": { + "type": "string", + "default": null, + "markdownDescription": "Read configuration from FILE path. Corresponds to the `--config` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)", + "scope": "resource" + }, + "robotcode.robocop.ignoreFileConfig": { + "type": "boolean", + "default": false, + "markdownDescription": "Do not load configuration files. Corresponds to the `--ignore-file-config` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)", "scope": "resource" }, "robotcode.robocop.configurations": { @@ -1149,8 +1169,9 @@ "items": { "type": "string" }, - "description": "Configure 'robocop' checker with parameter value.", - "scope": "resource" + "description": "Configure checker or report with parameter value. Corresponds to the `--configure` option of _robocop_ See [robocop](https://robocop.readthedocs.io/)", + "scope": "resource", + "markdownDeprecationMessage": "This is a setting for an old `robotframework-robocop` version `<6.0` and will be removed in the future." } } }, diff --git a/packages/core/src/robotcode/core/utils/version.py b/packages/core/src/robotcode/core/utils/version.py index b09af855..ab79a164 100644 --- a/packages/core/src/robotcode/core/utils/version.py +++ b/packages/core/src/robotcode/core/utils/version.py @@ -1,3 +1,4 @@ +import functools import re from typing import NamedTuple, Optional @@ -16,6 +17,7 @@ class Version(NamedTuple): dev: Optional[int] = None +@functools.lru_cache(maxsize=128) def create_version_from_str(version_str: str) -> Version: def s_to_i(s: Optional[str]) -> Optional[int]: return int(s) if s is not None else None diff --git a/packages/language_server/src/robotcode/language_server/robotframework/configuration.py b/packages/language_server/src/robotcode/language_server/robotframework/configuration.py index 53412cc6..c9ec0a2b 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/configuration.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/configuration.py @@ -33,6 +33,9 @@ class RoboCopConfig(ConfigBase): enabled: bool = True include: List[str] = field(default_factory=list) exclude: List[str] = field(default_factory=list) + ignore_git_dir: bool = False + ignore_file_config: bool = False + config_file: Optional[str] = None configurations: List[str] = field(default_factory=list) diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py index fe8e2334..ff8313e4 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py @@ -1,6 +1,5 @@ import io import os -import re from concurrent.futures import CancelledError from typing import TYPE_CHECKING, Any, List, Optional, cast @@ -14,26 +13,17 @@ ) from robotcode.core.text_document import TextDocument from robotcode.core.utils.logging import LoggingDescriptor -from robotcode.core.utils.version import create_version_from_str -from robotcode.robot.diagnostics.model_helper import ModelHelper from robotcode.robot.utils import get_robot_version -from ..configuration import RoboTidyConfig +from ..configuration import RoboCopConfig, RoboTidyConfig from .protocol_part import RobotLanguageServerProtocolPart +from .robocop_tidy_mixin import RoboCopTidyMixin if TYPE_CHECKING: from ..protocol import RobotLanguageServerProtocol -def robotidy_installed() -> bool: - try: - __import__("robotidy") - except ImportError: - return False - return True - - -class RobotFormattingProtocolPart(RobotLanguageServerProtocolPart, ModelHelper): +class RobotFormattingProtocolPart(RobotLanguageServerProtocolPart, RoboCopTidyMixin): _logger = LoggingDescriptor() def __init__(self, parent: "RobotLanguageServerProtocol") -> None: @@ -41,7 +31,7 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None: parent.formatting.format.add(self.format) - if robotidy_installed(): + if self.robotidy_installed or (self.robocop_installed and self.robocop_version >= (6, 0)): parent.formatting.format_range.add(self.format_range) self.space_count = 4 @@ -49,14 +39,22 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None: self.line_separator = os.linesep self.short_test_name_length = 18 self.setting_and_variable_name_length = 14 + self.robocop_installed_message_shown = False - def get_config(self, document: TextDocument) -> RoboTidyConfig: + def get_tidy_config(self, document: TextDocument) -> RoboTidyConfig: folder = self.parent.workspace.get_workspace_folder(document.uri) if folder is None: return RoboTidyConfig() return self.parent.workspace.get_configuration(RoboTidyConfig, folder.uri) + def get_robocop_config(self, document: TextDocument) -> RoboCopConfig: + folder = self.parent.workspace.get_workspace_folder(document.uri) + if folder is None: + return RoboCopConfig() + + return self.parent.workspace.get_configuration(RoboCopConfig, folder.uri) + @language_id("robotframework") @_logger.call def format( @@ -66,23 +64,32 @@ def format( options: FormattingOptions, **further_options: Any, ) -> Optional[List[TextEdit]]: - config = self.get_config(document) + if (get_robot_version() >= (5, 0)) and self.robocop_installed and self.robocop_version >= (6, 0): + if not self.robocop_installed_message_shown and self.robotidy_installed: + self.parent.window.show_message( + "`robotframework-robocop >= 6.0` is installed and will be used for formatting.\n" + "`robotframework-tidy` is also detected in the workspace. " + "It is not needed as `robocop` handles formatting tasks.\n", + MessageType.INFO, + ) + self.robocop_installed_message_shown = True - if (config.enabled or get_robot_version() >= (5, 0)) and robotidy_installed(): - return self.format_robot_tidy(document, options, config=config, **further_options) + return self.format_robocop(document, options, **further_options) + + tidy_config = self.get_tidy_config(document) + if (tidy_config.enabled or get_robot_version() >= (5, 0)) and self.robotidy_installed: + return self.format_robot_tidy(document, options, config=tidy_config, **further_options) if get_robot_version() < (5, 0): return self.format_internal(document, options, **further_options) self.parent.window.show_message( - "RobotFramework formatter is not available, please install 'robotframework-tidy'.", + "RobotFramework formatter is not available, please install 'robotframework-robocop'.", MessageType.ERROR, ) return None - RE_LINEBREAKS = re.compile(r"\r\n|\r|\n") - def format_robot_tidy( self, document: TextDocument, @@ -91,28 +98,24 @@ def format_robot_tidy( config: Optional[RoboTidyConfig] = None, **further_options: Any, ) -> Optional[List[TextEdit]]: - from robotidy.version import __version__ - try: if config is None: - config = self.get_config(document) - - robotidy_version = create_version_from_str(__version__) + config = self.get_tidy_config(document) model = self.parent.documents_cache.get_model(document, False) - if robotidy_version >= (3, 0): + if self.robotidy_version >= (3, 0): from robotidy.api import get_robotidy from robotidy.disablers import RegisterDisablers - if robotidy_version >= (4, 2): + if self.robotidy_version >= (4, 2): robot_tidy = get_robotidy( document.uri.to_path(), None, ignore_git_dir=config.ignore_git_dir, config=config.config, ) - elif robotidy_version >= (4, 1): + elif self.robotidy_version >= (4, 1): robot_tidy = get_robotidy( document.uri.to_path(), None, @@ -131,14 +134,14 @@ def format_robot_tidy( ) disabler_finder.visit(model) - if robotidy_version >= (4, 11): + if self.robotidy_version >= (4, 11): if disabler_finder.is_disabled_in_file(): return None else: if disabler_finder.file_disabled: return None - if robotidy_version >= (4, 0): + if self.robotidy_version >= (4, 0): _, _, new, _ = robot_tidy.transform_until_stable(model, disabler_finder) else: _, _, new = robot_tidy.transform(model, disabler_finder.disablers) @@ -152,7 +155,7 @@ def format_robot_tidy( robot_tidy.formatting_config.start_line = range.start.line + 1 robot_tidy.formatting_config.end_line = range.end.line + 1 - if robotidy_version >= (2, 2): + if self.robotidy_version >= (2, 2): from robotidy.disablers import RegisterDisablers disabler_finder = RegisterDisablers( @@ -186,6 +189,50 @@ def format_robot_tidy( self.parent.window.show_message(f"Executing `robotidy` failed: {e}", MessageType.ERROR) return None + def format_robocop( + self, + document: TextDocument, + options: FormattingOptions, + range: Optional[Range] = None, + **further_options: Any, + ) -> Optional[List[TextEdit]]: + from robocop.config import ConfigManager + from robocop.formatter.runner import RobocopFormatter + + robocop_config = self.get_robocop_config(document) + + config_manager = ConfigManager( + [document.uri.to_path()], + config=robocop_config.config_file, + ignore_git_dir=robocop_config.ignore_git_dir, + ignore_file_config=robocop_config.ignore_file_config, + ) + + config = config_manager.get_config_for_source_file(document.uri.to_path()) + + if range is not None: + config.formatter.start_line = range.start.line + 1 + config.formatter.end_line = range.end.line + 1 + + runner = RobocopFormatter(config_manager) + runner.config = config + + model = self.parent.documents_cache.get_model(document, False) + _, _, new, _ = runner.format_until_stable(model) + + if new.text == document.text(): + return None + + return [ + TextEdit( + range=Range( + start=Position(line=0, character=0), + end=Position(line=len(document.get_lines()), character=0), + ), + new_text=new.text, + ) + ] + def format_internal( self, document: TextDocument, @@ -233,8 +280,8 @@ def format_range( options: FormattingOptions, **further_options: Any, ) -> Optional[List[TextEdit]]: - config = self.get_config(document) - if config.enabled and robotidy_installed(): + config = self.get_tidy_config(document) + if (config.enabled and self.robotidy_installed) or (self.robocop_installed and self.robocop_version >= (6, 0)): return self.format_robot_tidy(document, options, range=range, config=config, **further_options) return None diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py index 45d403bc..33fad7f5 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py @@ -7,9 +7,8 @@ from robotcode.core.utils.logging import LoggingDescriptor from robotcode.jsonrpc2.protocol import rpc_method -from .formatting import robotidy_installed from .protocol_part import RobotLanguageServerProtocolPart -from .robocop_diagnostics import robocop_installed +from .robocop_tidy_mixin import RoboCopTidyMixin if TYPE_CHECKING: from ..protocol import RobotLanguageServerProtocol @@ -22,7 +21,7 @@ class ProjectInfo(CamelSnakeMixin): tidy_version_string: Optional[str] = None -class ProjectInfoPart(RobotLanguageServerProtocolPart): +class ProjectInfoPart(RobotLanguageServerProtocolPart, RoboCopTidyMixin): _logger = LoggingDescriptor() def __init__(self, parent: "RobotLanguageServerProtocol") -> None: @@ -36,24 +35,12 @@ def _robot_project_info( **kwargs: Any, ) -> ProjectInfo: robocop_version_string = None - if robocop_installed(): - try: - from robocop.version import __version__ - - robocop_version_string = __version__ - except ImportError: - try: - from robocop import __version__ - - robocop_version_string = __version__ - except ImportError: - pass + if self.robocop_installed: + robocop_version_string = self.robocop_version_str tidy_version_string = None - if robotidy_installed(): - from robotidy.version import __version__ - - tidy_version_string = __version__ + if self.robotidy_installed: + tidy_version_string = self.robotidy_version_str return ProjectInfo( robot_version_string=get_version(), diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py index 6f18a6bd..46b94f84 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_diagnostics.py @@ -17,20 +17,13 @@ from ...common.parts.diagnostics import DiagnosticsCollectType, DiagnosticsResult from ..configuration import RoboCopConfig from .protocol_part import RobotLanguageServerProtocolPart +from .robocop_tidy_mixin import RoboCopTidyMixin if TYPE_CHECKING: from ..protocol import RobotLanguageServerProtocol -def robocop_installed() -> bool: - try: - __import__("robocop") - except ImportError: - return False - return True - - -class RobotRoboCopDiagnosticsProtocolPart(RobotLanguageServerProtocolPart): +class RobotRoboCopDiagnosticsProtocolPart(RobotLanguageServerProtocolPart, RoboCopTidyMixin): _logger = LoggingDescriptor() def __init__(self, parent: "RobotLanguageServerProtocol") -> None: @@ -38,7 +31,7 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None: self.source_name = "robocop" - if robocop_installed(): + if self.robocop_installed and self.robocop_version < (6, 0): parent.diagnostics.collect.add(self.collect_diagnostics) def get_config(self, document: TextDocument) -> Optional[RoboCopConfig]: diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_tidy_mixin.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_tidy_mixin.py new file mode 100644 index 00000000..1f842dbe --- /dev/null +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/robocop_tidy_mixin.py @@ -0,0 +1,49 @@ +import functools + +from robotcode.core.utils.version import Version, create_version_from_str + + +class RoboCopTidyMixin: + """ + Mixin class for handling Robocop tidy operations. + """ + + @functools.cached_property + def robotidy_installed(self) -> bool: + try: + __import__("robotidy") + except ImportError: + return False + return True + + @functools.cached_property + def robotidy_version(self) -> Version: + from robotidy.version import __version__ + + return create_version_from_str(__version__) + + @functools.cached_property + def robotidy_version_str(self) -> str: + from robotidy.version import __version__ + + return str(__version__) + + @functools.cached_property + def robocop_installed(self) -> bool: + try: + __import__("robocop") + except ImportError: + return False + return True + + @functools.cached_property + def robocop_version(self) -> Version: + from robocop import __version__ + + return create_version_from_str(__version__) + + @functools.cached_property + def robocop_version_str(self) -> str: + from robocop import __version__ + + return str(__version__) diff --git a/packages/robot/src/robotcode/robot/utils/__init__.py b/packages/robot/src/robotcode/robot/utils/__init__.py index 6de8d44a..2d3d4a4a 100644 --- a/packages/robot/src/robotcode/robot/utils/__init__.py +++ b/packages/robot/src/robotcode/robot/utils/__init__.py @@ -1,17 +1,14 @@ -from typing import Optional +import functools import robot.version from robotcode.core.utils.version import Version, create_version_from_str -_robot_version: Optional[Version] = None - +@functools.lru_cache(maxsize=1) def get_robot_version() -> Version: - global _robot_version - if _robot_version is None: - _robot_version = create_version_from_str(robot.version.get_version()) - return _robot_version + return create_version_from_str(robot.version.get_version()) +@functools.lru_cache(maxsize=1) def get_robot_version_str() -> str: return str(robot.version.get_version()) diff --git a/vscode-client/extension/languageclientsmanger.ts b/vscode-client/extension/languageclientsmanger.ts index 6299bcbd..0589a292 100644 --- a/vscode-client/extension/languageclientsmanger.ts +++ b/vscode-client/extension/languageclientsmanger.ts @@ -179,7 +179,7 @@ export class LanguageClientsManager { public readonly outputChannel: vscode.OutputChannel, ) { const fileWatcher1 = vscode.workspace.createFileSystemWatcher( - `**/{pyproject.toml,robot.toml,.robot.toml,.gitignore,.robotignore}`, + `**/{pyproject.toml,robot.toml,.robot.toml,robocop.toml,.gitignore,.robotignore}`, ); fileWatcher1.onDidCreate((uri) => this.restart(vscode.workspace.getWorkspaceFolder(uri)?.uri)); fileWatcher1.onDidDelete((uri) => this.restart(vscode.workspace.getWorkspaceFolder(uri)?.uri)); From ef8eb34b738d53eebbf27a93725a7e3d7decc977 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Fri, 30 May 2025 02:20:28 +0200 Subject: [PATCH 003/110] =?UTF-8?q?chore(release):=20bump=20version=201.3.?= =?UTF-8?q?0-dev.2=20=E2=86=92=201.3.0-dev.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ intellij-client/gradle.properties | 2 +- package-lock.json | 4 +-- package.json | 4 +-- packages/analyze/pyproject.toml | 6 ++-- .../src/robotcode/analyze/__version__.py | 2 +- .../core/src/robotcode/core/__version__.py | 2 +- packages/debugger/pyproject.toml | 4 +-- .../src/robotcode/debugger/__version__.py | 2 +- packages/jsonrpc2/pyproject.toml | 2 +- .../src/robotcode/jsonrpc2/__version__.py | 2 +- packages/language_server/pyproject.toml | 8 ++--- .../robotcode/language_server/__version__.py | 2 +- .../src/robotcode/modifiers/__version__.py | 2 +- .../src/robotcode/plugin/__version__.py | 2 +- packages/repl/pyproject.toml | 2 +- .../repl/src/robotcode/repl/__version__.py | 2 +- packages/repl_server/pyproject.toml | 4 +-- .../src/robotcode/repl_server/__version__.py | 2 +- packages/robot/pyproject.toml | 2 +- .../robot/src/robotcode/robot/__version__.py | 2 +- packages/runner/pyproject.toml | 8 ++--- .../src/robotcode/runner/__version__.py | 2 +- pyproject.toml | 30 +++++++++---------- src/robotcode/cli/__version__.py | 2 +- 25 files changed, 52 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 835b3c48..f497a437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,9 @@ All notable changes to this project will be documented in this file. See [conven ### Features - **intellij:** Reimplement and simplified parsing and syntax highlightning ([2dcdf7c](https://github.com/robotcodedev/robotcode/commit/2dcdf7ce846e8483fb427cdc7945a084fe4c3232)) +- **langserver:** Implemented robocop 6.0 formatting and deprecate old robotidy ([310bc54](https://github.com/robotcodedev/robotcode/commit/310bc544be8306fb85a329698763b562cd9d85aa)) - **langserver:** Better support for indexed assignments ([6fad9b1](https://github.com/robotcodedev/robotcode/commit/6fad9b161b85b2412b6a9d5169e69b4ce37c43c3)) +- **vscode:** Add deprecation messages for robotframework-tidy in configuration ([37c5371](https://github.com/robotcodedev/robotcode/commit/37c5371919d10a7ea1f46c91f1f7707b63fa96ce)) - Show editor hint for Python/Robot Framework issues instead of throwing error ([4c2a43b](https://github.com/robotcodedev/robotcode/commit/4c2a43b8fd2ece7f905fc10695f2d5b9487dc52a)) diff --git a/intellij-client/gradle.properties b/intellij-client/gradle.properties index 2f865458..2e2deb2d 100644 --- a/intellij-client/gradle.properties +++ b/intellij-client/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = dev.robotcode pluginName = RobotCode - Robot Framework Support pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij # SemVer format -> https://semver.org -pluginVersion = 1.3.0-dev.2 +pluginVersion = 1.3.0-dev.3 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 251 diff --git a/package-lock.json b/package-lock.json index 0eb28e90..4c3ee36d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "robotcode", - "version": "1.3.0-dev.2", + "version": "1.3.0-dev.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "robotcode", - "version": "1.3.0-dev.2", + "version": "1.3.0-dev.3", "funding": [ { "type": "opencollective", diff --git a/package.json b/package.json index 19e84715..11aba0ad 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more", "icon": "images/icon.png", "publisher": "d-biehl", - "version": "1.3.0-dev.2", + "version": "1.3.0-dev.3", "author": { "name": "Daniel Biehl", "url": "https://github.com/robotcodedev/" @@ -1989,4 +1989,4 @@ "workspaces": [ "docs" ] -} \ No newline at end of file +} diff --git a/packages/analyze/pyproject.toml b/packages/analyze/pyproject.toml index d03358f7..0d74dae0 100644 --- a/packages/analyze/pyproject.toml +++ b/packages/analyze/pyproject.toml @@ -27,9 +27,9 @@ classifiers = [ ] dependencies = [ "robotframework>=4.1.0", - "robotcode-plugin==1.3.0-dev.2", - "robotcode-robot==1.3.0-dev.2", - "robotcode==1.3.0-dev.2", + "robotcode-plugin==1.3.0-dev.3", + "robotcode-robot==1.3.0-dev.3", + "robotcode==1.3.0-dev.3", ] dynamic = ["version"] diff --git a/packages/analyze/src/robotcode/analyze/__version__.py b/packages/analyze/src/robotcode/analyze/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/analyze/src/robotcode/analyze/__version__.py +++ b/packages/analyze/src/robotcode/analyze/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/core/src/robotcode/core/__version__.py b/packages/core/src/robotcode/core/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/core/src/robotcode/core/__version__.py +++ b/packages/core/src/robotcode/core/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/debugger/pyproject.toml b/packages/debugger/pyproject.toml index 0af6500f..ecee6f92 100644 --- a/packages/debugger/pyproject.toml +++ b/packages/debugger/pyproject.toml @@ -28,8 +28,8 @@ classifiers = [ dynamic = ["version"] dependencies = [ "robotframework>=4.1.0", - "robotcode-jsonrpc2==1.3.0-dev.2", - "robotcode-runner==1.3.0-dev.2", + "robotcode-jsonrpc2==1.3.0-dev.3", + "robotcode-runner==1.3.0-dev.3", ] [project.optional-dependencies] diff --git a/packages/debugger/src/robotcode/debugger/__version__.py b/packages/debugger/src/robotcode/debugger/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/debugger/src/robotcode/debugger/__version__.py +++ b/packages/debugger/src/robotcode/debugger/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/jsonrpc2/pyproject.toml b/packages/jsonrpc2/pyproject.toml index 26a0e32f..eab80521 100644 --- a/packages/jsonrpc2/pyproject.toml +++ b/packages/jsonrpc2/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Framework :: Robot Framework", "Framework :: Robot Framework :: Tool", ] -dependencies = ["robotcode-core==1.3.0-dev.2"] +dependencies = ["robotcode-core==1.3.0-dev.3"] dynamic = ["version"] [project.urls] diff --git a/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py b/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py +++ b/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/language_server/pyproject.toml b/packages/language_server/pyproject.toml index 68d029de..08e83e1b 100644 --- a/packages/language_server/pyproject.toml +++ b/packages/language_server/pyproject.toml @@ -27,10 +27,10 @@ classifiers = [ ] dependencies = [ "robotframework>=4.1.0", - "robotcode-jsonrpc2==1.3.0-dev.2", - "robotcode-robot==1.3.0-dev.2", - "robotcode-analyze==1.3.0-dev.2", - "robotcode==1.3.0-dev.2", + "robotcode-jsonrpc2==1.3.0-dev.3", + "robotcode-robot==1.3.0-dev.3", + "robotcode-analyze==1.3.0-dev.3", + "robotcode==1.3.0-dev.3", ] dynamic = ["version"] diff --git a/packages/language_server/src/robotcode/language_server/__version__.py b/packages/language_server/src/robotcode/language_server/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/language_server/src/robotcode/language_server/__version__.py +++ b/packages/language_server/src/robotcode/language_server/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/modifiers/src/robotcode/modifiers/__version__.py b/packages/modifiers/src/robotcode/modifiers/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/modifiers/src/robotcode/modifiers/__version__.py +++ b/packages/modifiers/src/robotcode/modifiers/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/plugin/src/robotcode/plugin/__version__.py b/packages/plugin/src/robotcode/plugin/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/plugin/src/robotcode/plugin/__version__.py +++ b/packages/plugin/src/robotcode/plugin/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/repl/pyproject.toml b/packages/repl/pyproject.toml index 14a08ac7..257b2475 100644 --- a/packages/repl/pyproject.toml +++ b/packages/repl/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "robotcode-runner==1.3.0-dev.2" + "robotcode-runner==1.3.0-dev.3" ] [project.entry-points.robotcode] diff --git a/packages/repl/src/robotcode/repl/__version__.py b/packages/repl/src/robotcode/repl/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/repl/src/robotcode/repl/__version__.py +++ b/packages/repl/src/robotcode/repl/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/repl_server/pyproject.toml b/packages/repl_server/pyproject.toml index 35ba3814..7a391993 100644 --- a/packages/repl_server/pyproject.toml +++ b/packages/repl_server/pyproject.toml @@ -27,8 +27,8 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "robotcode-jsonrpc2==1.3.0-dev.2", - "robotcode-runner==1.3.0-dev.2" + "robotcode-jsonrpc2==1.3.0-dev.3", + "robotcode-runner==1.3.0-dev.3" ] [project.entry-points.robotcode] diff --git a/packages/repl_server/src/robotcode/repl_server/__version__.py b/packages/repl_server/src/robotcode/repl_server/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/repl_server/src/robotcode/repl_server/__version__.py +++ b/packages/repl_server/src/robotcode/repl_server/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/robot/pyproject.toml b/packages/robot/pyproject.toml index 8fb4a55d..93b538b6 100644 --- a/packages/robot/pyproject.toml +++ b/packages/robot/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "robotframework>=4.1.0", "tomli>=1.1.0; python_version < '3.11'", "platformdirs>=3.2.0,<4.4.0", - "robotcode-core==1.3.0-dev.2", + "robotcode-core==1.3.0-dev.3", ] dynamic = ["version"] diff --git a/packages/robot/src/robotcode/robot/__version__.py b/packages/robot/src/robotcode/robot/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/robot/src/robotcode/robot/__version__.py +++ b/packages/robot/src/robotcode/robot/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/packages/runner/pyproject.toml b/packages/runner/pyproject.toml index 3e593b61..b640afb2 100644 --- a/packages/runner/pyproject.toml +++ b/packages/runner/pyproject.toml @@ -28,10 +28,10 @@ classifiers = [ dynamic = ["version"] dependencies = [ "robotframework>=4.1.0", - "robotcode-robot==1.3.0-dev.2", - "robotcode-modifiers==1.3.0-dev.2", - "robotcode-plugin==1.3.0-dev.2", - "robotcode==1.3.0-dev.2", + "robotcode-robot==1.3.0-dev.3", + "robotcode-modifiers==1.3.0-dev.3", + "robotcode-plugin==1.3.0-dev.3", + "robotcode==1.3.0-dev.3", ] [project.entry-points.robotcode] diff --git a/packages/runner/src/robotcode/runner/__version__.py b/packages/runner/src/robotcode/runner/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/packages/runner/src/robotcode/runner/__version__.py +++ b/packages/runner/src/robotcode/runner/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" diff --git a/pyproject.toml b/pyproject.toml index 375beb0f..d0bd67e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,9 +51,9 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "robotcode-core==1.3.0-dev.2", - "robotcode-plugin==1.3.0-dev.2", - "robotcode-robot==1.3.0-dev.2", + "robotcode-core==1.3.0-dev.3", + "robotcode-plugin==1.3.0-dev.3", + "robotcode-robot==1.3.0-dev.3", ] dynamic = ["version"] @@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main" [project.optional-dependencies] -debugger = ["robotcode-debugger==1.3.0-dev.2"] -languageserver = ["robotcode-language-server==1.3.0-dev.2"] -runner = ["robotcode-runner==1.3.0-dev.2"] -analyze = ["robotcode-analyze==1.3.0-dev.2"] +debugger = ["robotcode-debugger==1.3.0-dev.3"] +languageserver = ["robotcode-language-server==1.3.0-dev.3"] +runner = ["robotcode-runner==1.3.0-dev.3"] +analyze = ["robotcode-analyze==1.3.0-dev.3"] yaml = ["PyYAML>=5.4"] lint = ["robotframework-robocop>=2.0.0"] tidy = ["robotframework-tidy>=2.0.0"] rest = ["docutils"] -repl = ["robotcode-repl==1.3.0-dev.2"] -replserver = ["robotcode-repl-server==1.3.0-dev.2"] +repl = ["robotcode-repl==1.3.0-dev.3"] +replserver = ["robotcode-repl-server==1.3.0-dev.3"] colored = ["rich"] all = [ - "robotcode-debugger==1.3.0-dev.2", - "robotcode-language-server==1.3.0-dev.2", - "robotcode-runner==1.3.0-dev.2", - "robotcode-analyze==1.3.0-dev.2", - "robotcode-repl==1.3.0-dev.2", - "robotcode-repl-server==1.3.0-dev.2", + "robotcode-debugger==1.3.0-dev.3", + "robotcode-language-server==1.3.0-dev.3", + "robotcode-runner==1.3.0-dev.3", + "robotcode-analyze==1.3.0-dev.3", + "robotcode-repl==1.3.0-dev.3", + "robotcode-repl-server==1.3.0-dev.3", "PyYAML>=5.4", "robotframework-robocop>=2.0.0", "robotframework-tidy>=2.0.0", diff --git a/src/robotcode/cli/__version__.py b/src/robotcode/cli/__version__.py index 1cb3f8c2..f5dfc424 100644 --- a/src/robotcode/cli/__version__.py +++ b/src/robotcode/cli/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.2" +__version__ = "1.3.0-dev.3" From f71d15df40f8bfd1f9f325d35e1ba73bcf16c9aa Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Fri, 30 May 2025 10:28:19 +0200 Subject: [PATCH 004/110] fix(formatting): improve message clarity for robocop formatting --- .../robotframework/parts/formatting.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py index ff8313e4..564dbf02 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/formatting.py @@ -39,7 +39,7 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None: self.line_separator = os.linesep self.short_test_name_length = 18 self.setting_and_variable_name_length = 14 - self.robocop_installed_message_shown = False + self.is_robocop_notification_shown = False def get_tidy_config(self, document: TextDocument) -> RoboTidyConfig: folder = self.parent.workspace.get_workspace_folder(document.uri) @@ -65,14 +65,15 @@ def format( **further_options: Any, ) -> Optional[List[TextEdit]]: if (get_robot_version() >= (5, 0)) and self.robocop_installed and self.robocop_version >= (6, 0): - if not self.robocop_installed_message_shown and self.robotidy_installed: + if not self.is_robocop_notification_shown and self.robotidy_installed: self.parent.window.show_message( - "`robotframework-robocop >= 6.0` is installed and will be used for formatting.\n" - "`robotframework-tidy` is also detected in the workspace. " - "It is not needed as `robocop` handles formatting tasks.\n", + "`robotframework-robocop >= 6.0` is installed and will be used for formatting.\n\n" + "`robotframework-tidy` is also detected in the workspace, but its use is redundant.\n" + "Robocop fully supports all formatting tasks and provides a more comprehensive solution.\n\n" + "Note: The use of `robotframework-tidy` is deprecated and should be avoided in favor of Robocop.", MessageType.INFO, ) - self.robocop_installed_message_shown = True + self.is_robocop_notification_shown = True return self.format_robocop(document, options, **further_options) From 3842dbdaaae820c6c14078f7f399429d1c2afbb2 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Fri, 30 May 2025 11:53:27 +0200 Subject: [PATCH 005/110] chore(intellij): specify more intellij platforms for pluginVerification --- intellij-client/build.gradle.kts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/intellij-client/build.gradle.kts b/intellij-client/build.gradle.kts index 06b61fdd..bbbb0b12 100644 --- a/intellij-client/build.gradle.kts +++ b/intellij-client/build.gradle.kts @@ -121,7 +121,14 @@ intellijPlatform { failureLevel = listOf(INVALID_PLUGIN, COMPATIBILITY_PROBLEMS, MISSING_DEPENDENCIES) verificationReportsFormats = listOf(MARKDOWN, PLAIN) ides { - recommended() + select { + types = listOf( + IntelliJPlatformType.PyCharmCommunity, + IntelliJPlatformType.PyCharmProfessional, + IntelliJPlatformType.IntellijIdeaCommunity, + IntelliJPlatformType.IntellijIdeaUltimate, + ) + } } } From 22a3449822ca5a203c195a57b7c51f46e3eaad6b Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Fri, 30 May 2025 15:17:42 +0200 Subject: [PATCH 006/110] chore(intellij): add python plugin to runIdeIntellijIdeaC task --- intellij-client/build.gradle.kts | 51 +++++++++++++++++--------------- 1 file changed, 27 insertions(+), 24 deletions(-) diff --git a/intellij-client/build.gradle.kts b/intellij-client/build.gradle.kts index bbbb0b12..c1e6b4a1 100644 --- a/intellij-client/build.gradle.kts +++ b/intellij-client/build.gradle.kts @@ -32,7 +32,7 @@ kotlin { // Configure project's dependencies repositories { mavenCentral() - + // IntelliJ Platform Gradle Plugin Repositories Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-repositories-extension.html intellijPlatform { defaultRepositories() @@ -42,10 +42,10 @@ repositories { // Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/platforms.html#sub:version-catalog dependencies { compileOnly(libs.kotlinxSerialization) - + testImplementation(kotlin("test")) testImplementation(libs.junit) - + // IntelliJ Platform Gradle Plugin Dependencies Extension - read more: https://plugins.jetbrains.com/docs/intellij/tools-intellij-platform-gradle-plugin-dependencies-extension.html intellijPlatform { create( @@ -53,11 +53,11 @@ dependencies { providers.gradleProperty("platformVersion"), useInstaller = false, ) - + // Plugin Dependencies. Uses `platformBundledPlugins` property from the gradle.properties file for bundled IntelliJ Platform plugins. bundledPlugins(providers.gradleProperty("platformBundledPlugins").map { it.split(',') }) plugins(providers.gradleProperty("platformPlugins").map { it.split(',') }) - + pluginVerifier() zipSigner() testFramework(TestFrameworkType.Platform) @@ -69,12 +69,12 @@ intellijPlatform { pluginConfiguration { name = providers.gradleProperty("pluginName") version = providers.gradleProperty("pluginVersion") - + // Extract the section from README.md and provide for the plugin's manifest description = providers.fileContents(layout.projectDirectory.file("README.md")).asText.map { val start = "" val end = "" - + with(it.lines()) { if (!containsAll(listOf(start, end))) { throw GradleException("Plugin description section not found in README.md:\n$start ... $end") @@ -82,9 +82,9 @@ intellijPlatform { subList(indexOf(start) + 1, indexOf(end)).joinToString("\n").let(::markdownToHTML) } } - + val changelog = project.changelog - + // local variable for configuration cache compatibility // Get the latest available change notes from the changelog file changeNotes = providers.gradleProperty("pluginVersion").map { pluginVersion -> with(changelog) { @@ -94,29 +94,29 @@ intellijPlatform { ) } } - + ideaVersion { sinceBuild = providers.gradleProperty("pluginSinceBuild") untilBuild = providers.gradleProperty("pluginUntilBuild") } } - + signing { certificateChain = providers.environmentVariable("CERTIFICATE_CHAIN") privateKey = providers.environmentVariable("PRIVATE_KEY") password = providers.environmentVariable("PRIVATE_KEY_PASSWORD") } - + publishing { token = providers.environmentVariable("PUBLISH_TOKEN") - + // The pluginVersion is based on the SemVer (https://semver.org) and supports pre-release labels, like 2.1.7-alpha.3 // Specify pre-release label to publish the plugin in a custom Release Channel automatically. Read more: // https://plugins.jetbrains.com/docs/intellij/deployment.html#specifying-a-release-channel channels = providers.gradleProperty("pluginVersion") .map { listOf(it.substringAfter('-', "").substringBefore('.').ifEmpty { "default" }) } } - + pluginVerification { failureLevel = listOf(INVALID_PLUGIN, COMPATIBILITY_PROBLEMS, MISSING_DEPENDENCIES) verificationReportsFormats = listOf(MARKDOWN, PLAIN) @@ -130,7 +130,7 @@ intellijPlatform { ) } } - + } } @@ -163,22 +163,22 @@ val prepareSandboxConfig: PrepareSandboxTask.() -> Unit = { tasks { runIde { - + // From https://app.slack.com/client/T5P9YATH9/C5U8BM1MK // systemProperty("ide.experimental.ui", "true") // systemProperty("projectView.hide.dot.idea", "false") // systemProperty("terminal.new.ui", "false") // systemProperty("ide.tree.painter.compact.default", "true") } - + wrapper { gradleVersion = providers.gradleProperty("gradleVersion").get() } - + publishPlugin { dependsOn(patchChangelog) } - + prepareSandbox(prepareSandboxConfig) } @@ -204,9 +204,9 @@ tasks.withType { ) } } - + prepareSandboxTask(prepareSandboxConfig) - + plugins { robotServerPlugin(Constraints.LATEST_VERSION) } @@ -214,19 +214,22 @@ tasks.withType { @Suppress("unused") val runIdePyCharmProf by intellijPlatformTesting.runIde.registering { type = IntelliJPlatformType.PyCharmProfessional - + prepareSandboxTask(prepareSandboxConfig) } @Suppress("unused") val runIdePyCharmCommunityEAP by intellijPlatformTesting.runIde.registering { type = IntelliJPlatformType.PyCharmCommunity version = "LATEST-EAP-SNAPSHOT" - + prepareSandboxTask(prepareSandboxConfig) } @Suppress("unused") val runIdeIntellijIdeaC by intellijPlatformTesting.runIde.registering { type = IntelliJPlatformType.IntellijIdeaCommunity - + plugins { + plugin("PythonCore:251.23774.435") + } + prepareSandboxTask(prepareSandboxConfig) } From 3cd20582190df59c102a284fd2f710bcf7a6dc83 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Fri, 30 May 2025 15:23:33 +0200 Subject: [PATCH 007/110] chore(vscode): update packages --- docs/package.json | 4 +- package-lock.json | 894 ++++++++++++++++++++++++---------------------- package.json | 18 +- 3 files changed, 477 insertions(+), 439 deletions(-) diff --git a/docs/package.json b/docs/package.json index 8cd947a0..7a1bb28d 100644 --- a/docs/package.json +++ b/docs/package.json @@ -8,13 +8,13 @@ "preview": "vitepress preview" }, "devDependencies": { - "esbuild": "^0.25.4", + "esbuild": "^0.25.5", "markdown-it-abbr": "^2.0.0", "markdown-it-kbd": "^3.0.0", "markdown-it-mathjax3": "^4.3.2", "markdown-it-task-lists": "^2.1.1", "typescript": "^5.8.3", - "typescript-eslint": "^8.32.1", + "typescript-eslint": "^8.33.0", "vitepress": "^1.6.3", "vitepress-plugin-tabs": "^0.7.1", "vitepress-sidebar": "^1.31.1" diff --git a/package-lock.json b/package-lock.json index 4c3ee36d..e93ee3f6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,25 +27,25 @@ "@eslint/js": "^9.27.0", "@jgoz/esbuild-plugin-typecheck": "^4.0.3", "@types/fs-extra": "^11.0.4", - "@types/node": "^22.15.19", - "@types/vscode": "^1.96.0", + "@types/node": "^22.15.27", + "@types/vscode": "^1.99.0", "@types/vscode-notebook-renderer": "^1.72.3", "@vscode/python-extension": "^1.0.5", - "@vscode/vsce": "^3.4.1", - "esbuild": "^0.25.4", + "@vscode/vsce": "^3.4.2", + "esbuild": "^0.25.5", "eslint": "^9.27.0", "eslint-config-prettier": "^10.1.5", - "eslint-plugin-prettier": "^5.4.0", - "globals": "^16.1.0", + "eslint-plugin-prettier": "^5.4.1", + "globals": "^16.2.0", "ovsx": "^0.10.2", - "preact": "^10.26.6", + "preact": "^10.26.8", "prettier": "^3.5.3", "ts-loader": "^9.5.2", "typescript": "^5.8.3", - "typescript-eslint": "^8.32.1" + "typescript-eslint": "^8.33.0" }, "engines": { - "vscode": "^1.96.0" + "vscode": "^1.99.0" } }, "docs": { @@ -53,13 +53,13 @@ "docs": "file:" }, "devDependencies": { - "esbuild": "^0.25.4", + "esbuild": "^0.25.5", "markdown-it-abbr": "^2.0.0", "markdown-it-kbd": "^3.0.0", "markdown-it-mathjax3": "^4.3.2", "markdown-it-task-lists": "^2.1.1", "typescript": "^5.8.3", - "typescript-eslint": "^8.32.1", + "typescript-eslint": "^8.33.0", "vitepress": "^1.6.3", "vitepress-plugin-tabs": "^0.7.1", "vitepress-sidebar": "^1.31.1" @@ -529,13 +529,13 @@ } }, "node_modules/@babel/parser": { - "version": "7.27.2", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.2.tgz", - "integrity": "sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.3.tgz", + "integrity": "sha512-xyYxRj6+tLNDTWi0KCBcZ9V7yg3/lwL9DWh9Uwh/RIVlIfFidggcgxKX3GCXwCiswwcGRawBKbEg2LG/Y8eJhw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/types": "^7.27.1" + "@babel/types": "^7.27.3" }, "bin": { "parser": "bin/babel-parser.js" @@ -545,9 +545,9 @@ } }, "node_modules/@babel/types": { - "version": "7.27.1", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.1.tgz", - "integrity": "sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==", + "version": "7.27.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.3.tgz", + "integrity": "sha512-Y1GkI4ktrtvmawoSq+4FCVHNryea6uR+qUQy0AGxLSsjCX0nVmkYQMBLHDkXZuo5hGx7eYdnIaslsdBFm7zbUw==", "dev": true, "license": "MIT", "dependencies": { @@ -610,9 +610,9 @@ } }, "node_modules/@esbuild/aix-ppc64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.4.tgz", - "integrity": "sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz", + "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==", "cpu": [ "ppc64" ], @@ -627,9 +627,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.4.tgz", - "integrity": "sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz", + "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==", "cpu": [ "arm" ], @@ -644,9 +644,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.4.tgz", - "integrity": "sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz", + "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==", "cpu": [ "arm64" ], @@ -661,9 +661,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.4.tgz", - "integrity": "sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz", + "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==", "cpu": [ "x64" ], @@ -678,9 +678,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.4.tgz", - "integrity": "sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz", + "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==", "cpu": [ "arm64" ], @@ -695,9 +695,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.4.tgz", - "integrity": "sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz", + "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==", "cpu": [ "x64" ], @@ -712,9 +712,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.4.tgz", - "integrity": "sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz", + "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==", "cpu": [ "arm64" ], @@ -729,9 +729,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.4.tgz", - "integrity": "sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz", + "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==", "cpu": [ "x64" ], @@ -746,9 +746,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.4.tgz", - "integrity": "sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz", + "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==", "cpu": [ "arm" ], @@ -763,9 +763,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.4.tgz", - "integrity": "sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz", + "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==", "cpu": [ "arm64" ], @@ -780,9 +780,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.4.tgz", - "integrity": "sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz", + "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==", "cpu": [ "ia32" ], @@ -797,9 +797,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.4.tgz", - "integrity": "sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz", + "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==", "cpu": [ "loong64" ], @@ -814,9 +814,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.4.tgz", - "integrity": "sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz", + "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==", "cpu": [ "mips64el" ], @@ -831,9 +831,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.4.tgz", - "integrity": "sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz", + "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==", "cpu": [ "ppc64" ], @@ -848,9 +848,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.4.tgz", - "integrity": "sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz", + "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==", "cpu": [ "riscv64" ], @@ -865,9 +865,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.4.tgz", - "integrity": "sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz", + "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==", "cpu": [ "s390x" ], @@ -882,9 +882,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.4.tgz", - "integrity": "sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz", + "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==", "cpu": [ "x64" ], @@ -899,9 +899,9 @@ } }, "node_modules/@esbuild/netbsd-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.4.tgz", - "integrity": "sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz", + "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==", "cpu": [ "arm64" ], @@ -916,9 +916,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.4.tgz", - "integrity": "sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz", + "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==", "cpu": [ "x64" ], @@ -933,9 +933,9 @@ } }, "node_modules/@esbuild/openbsd-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.4.tgz", - "integrity": "sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz", + "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==", "cpu": [ "arm64" ], @@ -950,9 +950,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.4.tgz", - "integrity": "sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz", + "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==", "cpu": [ "x64" ], @@ -967,9 +967,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.4.tgz", - "integrity": "sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz", + "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==", "cpu": [ "x64" ], @@ -984,9 +984,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.4.tgz", - "integrity": "sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz", + "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==", "cpu": [ "arm64" ], @@ -1001,9 +1001,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.4.tgz", - "integrity": "sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz", + "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==", "cpu": [ "ia32" ], @@ -1018,9 +1018,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.4.tgz", - "integrity": "sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz", + "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==", "cpu": [ "x64" ], @@ -1273,9 +1273,9 @@ } }, "node_modules/@iconify-json/simple-icons": { - "version": "1.2.35", - "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.35.tgz", - "integrity": "sha512-PAHZZn6P5ToHMhmEeeh/O96E/Ep4PctN44N64dWYbDasEvbVoN6x62m+Doz8au0SVS4/zYEMAsDO6TdO9ep84Q==", + "version": "1.2.36", + "resolved": "https://registry.npmjs.org/@iconify-json/simple-icons/-/simple-icons-1.2.36.tgz", + "integrity": "sha512-ZMpVdoW/7hhbt2aHVSvudjH8eSVNNjKkAAjwAQHgiuPUiIfbvNakVin+H9uhUz4N9TbDT/nanzV/4Slb+6dDXw==", "dev": true, "license": "CC0-1.0", "dependencies": { @@ -1510,9 +1510,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.41.0.tgz", - "integrity": "sha512-KxN+zCjOYHGwCl4UCtSfZ6jrq/qi88JDUtiEFk8LELEHq2Egfc/FgW+jItZiOLRuQfb/3xJSgFuNPC9jzggX+A==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.41.1.tgz", + "integrity": "sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==", "cpu": [ "arm" ], @@ -1524,9 +1524,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.41.0.tgz", - "integrity": "sha512-yDvqx3lWlcugozax3DItKJI5j05B0d4Kvnjx+5mwiUpWramVvmAByYigMplaoAQ3pvdprGCTCE03eduqE/8mPQ==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.41.1.tgz", + "integrity": "sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==", "cpu": [ "arm64" ], @@ -1538,9 +1538,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.41.0.tgz", - "integrity": "sha512-2KOU574vD3gzcPSjxO0eyR5iWlnxxtmW1F5CkNOHmMlueKNCQkxR6+ekgWyVnz6zaZihpUNkGxjsYrkTJKhkaw==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.41.1.tgz", + "integrity": "sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==", "cpu": [ "arm64" ], @@ -1552,9 +1552,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.41.0.tgz", - "integrity": "sha512-gE5ACNSxHcEZyP2BA9TuTakfZvULEW4YAOtxl/A/YDbIir/wPKukde0BNPlnBiP88ecaN4BJI2TtAd+HKuZPQQ==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.41.1.tgz", + "integrity": "sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==", "cpu": [ "x64" ], @@ -1566,9 +1566,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.41.0.tgz", - "integrity": "sha512-GSxU6r5HnWij7FoSo7cZg3l5GPg4HFLkzsFFh0N/b16q5buW1NAWuCJ+HMtIdUEi6XF0qH+hN0TEd78laRp7Dg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.41.1.tgz", + "integrity": "sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==", "cpu": [ "arm64" ], @@ -1580,9 +1580,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.41.0.tgz", - "integrity": "sha512-KGiGKGDg8qLRyOWmk6IeiHJzsN/OYxO6nSbT0Vj4MwjS2XQy/5emsmtoqLAabqrohbgLWJ5GV3s/ljdrIr8Qjg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.41.1.tgz", + "integrity": "sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==", "cpu": [ "x64" ], @@ -1594,9 +1594,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.41.0.tgz", - "integrity": "sha512-46OzWeqEVQyX3N2/QdiU/CMXYDH/lSHpgfBkuhl3igpZiaB3ZIfSjKuOnybFVBQzjsLwkus2mjaESy8H41SzvA==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.41.1.tgz", + "integrity": "sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==", "cpu": [ "arm" ], @@ -1608,9 +1608,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.41.0.tgz", - "integrity": "sha512-lfgW3KtQP4YauqdPpcUZHPcqQXmTmH4nYU0cplNeW583CMkAGjtImw4PKli09NFi2iQgChk4e9erkwlfYem6Lg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.41.1.tgz", + "integrity": "sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==", "cpu": [ "arm" ], @@ -1622,9 +1622,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.41.0.tgz", - "integrity": "sha512-nn8mEyzMbdEJzT7cwxgObuwviMx6kPRxzYiOl6o/o+ChQq23gfdlZcUNnt89lPhhz3BYsZ72rp0rxNqBSfqlqw==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.41.1.tgz", + "integrity": "sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==", "cpu": [ "arm64" ], @@ -1636,9 +1636,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.41.0.tgz", - "integrity": "sha512-l+QK99je2zUKGd31Gh+45c4pGDAqZSuWQiuRFCdHYC2CSiO47qUWsCcenrI6p22hvHZrDje9QjwSMAFL3iwXwQ==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.41.1.tgz", + "integrity": "sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==", "cpu": [ "arm64" ], @@ -1650,9 +1650,9 @@ ] }, "node_modules/@rollup/rollup-linux-loongarch64-gnu": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.41.0.tgz", - "integrity": "sha512-WbnJaxPv1gPIm6S8O/Wg+wfE/OzGSXlBMbOe4ie+zMyykMOeqmgD1BhPxZQuDqwUN+0T/xOFtL2RUWBspnZj3w==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.41.1.tgz", + "integrity": "sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==", "cpu": [ "loong64" ], @@ -1664,9 +1664,9 @@ ] }, "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.41.0.tgz", - "integrity": "sha512-eRDWR5t67/b2g8Q/S8XPi0YdbKcCs4WQ8vklNnUYLaSWF+Cbv2axZsp4jni6/j7eKvMLYCYdcsv8dcU+a6QNFg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.41.1.tgz", + "integrity": "sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==", "cpu": [ "ppc64" ], @@ -1678,9 +1678,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.41.0.tgz", - "integrity": "sha512-TWrZb6GF5jsEKG7T1IHwlLMDRy2f3DPqYldmIhnA2DVqvvhY2Ai184vZGgahRrg8k9UBWoSlHv+suRfTN7Ua4A==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.41.1.tgz", + "integrity": "sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==", "cpu": [ "riscv64" ], @@ -1692,9 +1692,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.41.0.tgz", - "integrity": "sha512-ieQljaZKuJpmWvd8gW87ZmSFwid6AxMDk5bhONJ57U8zT77zpZ/TPKkU9HpnnFrM4zsgr4kiGuzbIbZTGi7u9A==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.41.1.tgz", + "integrity": "sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==", "cpu": [ "riscv64" ], @@ -1706,9 +1706,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.41.0.tgz", - "integrity": "sha512-/L3pW48SxrWAlVsKCN0dGLB2bi8Nv8pr5S5ocSM+S0XCn5RCVCXqi8GVtHFsOBBCSeR+u9brV2zno5+mg3S4Aw==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.41.1.tgz", + "integrity": "sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==", "cpu": [ "s390x" ], @@ -1720,9 +1720,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.41.0.tgz", - "integrity": "sha512-XMLeKjyH8NsEDCRptf6LO8lJk23o9wvB+dJwcXMaH6ZQbbkHu2dbGIUindbMtRN6ux1xKi16iXWu6q9mu7gDhQ==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.41.1.tgz", + "integrity": "sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==", "cpu": [ "x64" ], @@ -1734,9 +1734,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.41.0.tgz", - "integrity": "sha512-m/P7LycHZTvSQeXhFmgmdqEiTqSV80zn6xHaQ1JSqwCtD1YGtwEK515Qmy9DcB2HK4dOUVypQxvhVSy06cJPEg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.41.1.tgz", + "integrity": "sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==", "cpu": [ "x64" ], @@ -1748,9 +1748,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.41.0.tgz", - "integrity": "sha512-4yodtcOrFHpbomJGVEqZ8fzD4kfBeCbpsUy5Pqk4RluXOdsWdjLnjhiKy2w3qzcASWd04fp52Xz7JKarVJ5BTg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.41.1.tgz", + "integrity": "sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==", "cpu": [ "arm64" ], @@ -1762,9 +1762,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.41.0.tgz", - "integrity": "sha512-tmazCrAsKzdkXssEc65zIE1oC6xPHwfy9d5Ta25SRCDOZS+I6RypVVShWALNuU9bxIfGA0aqrmzlzoM5wO5SPQ==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.41.1.tgz", + "integrity": "sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==", "cpu": [ "ia32" ], @@ -1776,9 +1776,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.41.0.tgz", - "integrity": "sha512-h1J+Yzjo/X+0EAvR2kIXJDuTuyT7drc+t2ALY0nIcGPbTatNOf0VWdhEA2Z4AAjv6X1NJV7SYo5oCTYRJhSlVA==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.41.1.tgz", + "integrity": "sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==", "cpu": [ "x64" ], @@ -1790,30 +1790,30 @@ ] }, "node_modules/@secretlint/config-creator": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/config-creator/-/config-creator-9.3.2.tgz", - "integrity": "sha512-IDUNnM/WVYcvj9PeoZIAvew31HHOtL/paJVkYT2D7G8HyehhTOPMvZSYVr43KXZ/bwUdlJg39C14xPx0NVsJyw==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/config-creator/-/config-creator-9.3.3.tgz", + "integrity": "sha512-USIKXtBIDPBt+uxssxFVqYBzSommdwXNDGwRZPGErnKWeIH58XuyqIjRTi99fYB0yAQZZ+Cv4sD2JVXCxevEew==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/types": "^9.3.2" + "@secretlint/types": "^9.3.3" }, "engines": { "node": "^14.13.1 || >=16.0.0" } }, "node_modules/@secretlint/config-loader": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/config-loader/-/config-loader-9.3.2.tgz", - "integrity": "sha512-5pBUiAFI7lwHzsxPozwhIXVVxj65MbPOth5nSPz2rdpLg/dlti3udlstoq624kqQAlpb196Bhto3JCZGpKduQw==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/config-loader/-/config-loader-9.3.3.tgz", + "integrity": "sha512-t0NGpVq7fFROr/UqfxSI09UI30U7rKSGXjfKNwR0O6fMlwx2AV9RWOvLS4hDLwxxKs+ywss6DZx/wcTdtBEWxA==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/profiler": "^9.3.2", - "@secretlint/resolver": "^9.3.2", - "@secretlint/types": "^9.3.2", + "@secretlint/profiler": "^9.3.3", + "@secretlint/resolver": "^9.3.3", + "@secretlint/types": "^9.3.3", "ajv": "^8.17.1", - "debug": "^4.4.0", + "debug": "^4.4.1", "rc-config-loader": "^4.1.3" }, "engines": { @@ -1845,15 +1845,15 @@ "license": "MIT" }, "node_modules/@secretlint/core": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/core/-/core-9.3.2.tgz", - "integrity": "sha512-oBsrFDTwXvFNLjIdcwrbCS/WUhKrGUeTDTSrmQBuaJvLHgCUX8/jEuBhBONkUDgWO3QEHRhi9LDlgnBqTIODEw==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/core/-/core-9.3.3.tgz", + "integrity": "sha512-XPpchOJz591E6bqMWkY6VxtaIbSI0gY0bUeVz1gkfT6FUI0fOfJrAMWe9RhxXWraMuxokTQA8R/LFJefiK+bXg==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/profiler": "^9.3.2", - "@secretlint/types": "^9.3.2", - "debug": "^4.4.0", + "@secretlint/profiler": "^9.3.3", + "@secretlint/types": "^9.3.3", + "debug": "^4.4.1", "structured-source": "^4.0.0" }, "engines": { @@ -1861,19 +1861,19 @@ } }, "node_modules/@secretlint/formatter": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/formatter/-/formatter-9.3.2.tgz", - "integrity": "sha512-JiFhZtg2a4WdkPxCXlq0iGUz18UxzjWnyUMvb/89BvF5m9DKDvmlfHIMLZ3O5205mSJqlpcZxRu7eADJB9fS7Q==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/formatter/-/formatter-9.3.3.tgz", + "integrity": "sha512-kqfnbhtxcH1Ew7pboM+jCZl8CuBzVuEKuHHSkT92iasxaaq1NK37h5IIfUDbFdXizmNFe3MwAnnVU8lqK2Dvyg==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/resolver": "^9.3.2", - "@secretlint/types": "^9.3.2", - "@textlint/linter-formatter": "^14.6.0", - "@textlint/module-interop": "^14.6.0", - "@textlint/types": "^14.6.0", + "@secretlint/resolver": "^9.3.3", + "@secretlint/types": "^9.3.3", + "@textlint/linter-formatter": "^14.7.1", + "@textlint/module-interop": "^14.7.1", + "@textlint/types": "^14.7.1", "chalk": "^4.1.2", - "debug": "^4.4.0", + "debug": "^4.4.1", "pluralize": "^8.0.0", "strip-ansi": "^6.0.1", "table": "^6.9.0", @@ -1960,19 +1960,19 @@ } }, "node_modules/@secretlint/node": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/node/-/node-9.3.2.tgz", - "integrity": "sha512-WH3PjYtZ8RumUJFZvM4vYEvpelT2m6WFzCRS3j+nzmH5eSv70+BWSISMB/ouZ5koq1+1zPlnWf/ADEvOwgbebw==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/node/-/node-9.3.3.tgz", + "integrity": "sha512-ZD1yXlzEJmFS/lq+BmgzUBB+2mQgj6kK6A//IhBop5xqAp+lXoq1vNgu7VSJ3DR+XrKrIK7YHFZXRh9aJvIjmA==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/config-loader": "^9.3.2", - "@secretlint/core": "^9.3.2", - "@secretlint/formatter": "^9.3.2", - "@secretlint/profiler": "^9.3.2", - "@secretlint/source-creator": "^9.3.2", - "@secretlint/types": "^9.3.2", - "debug": "^4.4.0", + "@secretlint/config-loader": "^9.3.3", + "@secretlint/core": "^9.3.3", + "@secretlint/formatter": "^9.3.3", + "@secretlint/profiler": "^9.3.3", + "@secretlint/source-creator": "^9.3.3", + "@secretlint/types": "^9.3.3", + "debug": "^4.4.1", "p-map": "^4.0.0" }, "engines": { @@ -1980,23 +1980,23 @@ } }, "node_modules/@secretlint/profiler": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/profiler/-/profiler-9.3.2.tgz", - "integrity": "sha512-cXXWQzA6lIcT0TY53JvbXtH6BltBfqmH5V39byhnbDfZl5FKCB6FHxVVzkctjwss6KMtDXcNLvfz3nKBZaWRDA==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/profiler/-/profiler-9.3.3.tgz", + "integrity": "sha512-wcVTByh+m9O1w2WAV08Po6trGsVjhRTV1UWuzVcQTTap9EjeKQLja6Xof/SIDGORD0KWooUIMAe7VPLQFPi1cQ==", "dev": true, "license": "MIT" }, "node_modules/@secretlint/resolver": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/resolver/-/resolver-9.3.2.tgz", - "integrity": "sha512-yOi6md3kzpaFw6w2FJTDLoKlUxr1RltBJrb5lheIBDDXy/7C/5gP0K4uMiqamnVg8c9Ac+qlNS5KUar8FDFpdg==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/resolver/-/resolver-9.3.3.tgz", + "integrity": "sha512-8N0lqD7OiI/aLK/PhKyiGh5xTlO/6TjHiOt72jnrvB9BK2QF45Mp5fivCARTKBypDiTZrOrS7blvqZ7qTnOTrA==", "dev": true, "license": "MIT" }, "node_modules/@secretlint/secretlint-formatter-sarif": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/secretlint-formatter-sarif/-/secretlint-formatter-sarif-9.3.2.tgz", - "integrity": "sha512-RtL9BISmhtsHTOcPI6+4AL1sRnUcnMhuQTvFbNPb9malxolIjthUsUKC5WqgT+8JN1tUG7w/diW+/kr5F1T0zw==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/secretlint-formatter-sarif/-/secretlint-formatter-sarif-9.3.3.tgz", + "integrity": "sha512-qH8726RFQLdD2iKXamSbBcRTSxbECDbvg0hS3aTGL0+XOmzWI7JL4tdNywMqeHzKCRLrcEJOLYWv/P/w2VdwkA==", "dev": true, "license": "MIT", "dependencies": { @@ -2004,22 +2004,22 @@ } }, "node_modules/@secretlint/secretlint-rule-no-dotenv": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-no-dotenv/-/secretlint-rule-no-dotenv-9.3.2.tgz", - "integrity": "sha512-i1npoCy8eha8gU602SFf4S7vPOYMu9/WHCIr41EQvy4C9J+u95bt8COOYmk46e+aPyEDmQGxn2Lp4F2A2BoVLw==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-no-dotenv/-/secretlint-rule-no-dotenv-9.3.3.tgz", + "integrity": "sha512-Fm1uSlchskbIGuVEIYr1MnhTvUSd4GHqiRXVomH0Sli9Q0JMKElBlfS8cB165OaNGrCZ+TmmdrF/Q8sjwZYWyQ==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/types": "^9.3.2" + "@secretlint/types": "^9.3.3" }, "engines": { "node": "^14.13.1 || >=16.0.0" } }, "node_modules/@secretlint/secretlint-rule-preset-recommend": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-preset-recommend/-/secretlint-rule-preset-recommend-9.3.2.tgz", - "integrity": "sha512-rMvHTcHWLydOhKWDrK62x54ICMyfPwl0H5hAPfurLQR0sjjxGeSKuqr75emu6a2/5yYgvScZC97xVrlc2fTPSA==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/secretlint-rule-preset-recommend/-/secretlint-rule-preset-recommend-9.3.3.tgz", + "integrity": "sha512-zT8zxh1z28Vzc9S5FVMbfWOITNikTYmajLTuX4D8lhGM3bx7xDopUJnsEtj1lAGc5WcCZ3baMJ3xCFZeDv/SAg==", "dev": true, "license": "MIT", "engines": { @@ -2027,13 +2027,13 @@ } }, "node_modules/@secretlint/source-creator": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/source-creator/-/source-creator-9.3.2.tgz", - "integrity": "sha512-eEP8sHnTB7rtv976Awh5+VMTD8udiHBaeSWAEKGy21Gas/slEb02Q812SWo2UMX9NcVBl+DYaOkmPQbcPHrY5A==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/source-creator/-/source-creator-9.3.3.tgz", + "integrity": "sha512-2h6t9UfWQn7Sp6PUO+hvWK3i55tqE4H4YlmUBlL5VOjubADcO21OAtp7S05LgXE+VJfLDgUcb1hflkw0cPE1rw==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/types": "^9.3.2", + "@secretlint/types": "^9.3.3", "istextorbinary": "^6.0.0" }, "engines": { @@ -2041,9 +2041,9 @@ } }, "node_modules/@secretlint/types": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/@secretlint/types/-/types-9.3.2.tgz", - "integrity": "sha512-Mxs8jzyPm843B0P/YNiOxnFSNyYtrmMoLPjrmqebrI5LBERRGctXj2Q9Oy/ayZ+FMK+1cP9jLhceicRvlZPR1Q==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/@secretlint/types/-/types-9.3.3.tgz", + "integrity": "sha512-ehVGggPM23sHEkqQP/5HlGDK+8Xx2oRX8vF9C/fKh+TcTRWOfjCeC7QeoPxcEMXNDXfUsHK5P8DKqQEcpbiUZQ==", "dev": true, "license": "MIT", "engines": { @@ -2416,9 +2416,9 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "22.15.19", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.19.tgz", - "integrity": "sha512-3vMNr4TzNQyjHcRZadojpRaD9Ofr6LsonZAoQ+HMUa/9ORTPoxVIw0e0mpqWpdjj8xybyCM+oKOUH2vwFu/oEw==", + "version": "22.15.27", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.27.tgz", + "integrity": "sha512-5fF+eu5mwihV2BeVtX5vijhdaZOfkQTATrePEaXTcKqI16LhJ7gi2/Vhd9OZM0UojcdmiOCVg5rrax+i1MdoQQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2468,17 +2468,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.32.1.tgz", - "integrity": "sha512-6u6Plg9nP/J1GRpe/vcjjabo6Uc5YQPAMxsgQyGC/I0RuukiG1wIe3+Vtg3IrSCVJDmqK3j8adrtzXSENRtFgg==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.33.0.tgz", + "integrity": "sha512-CACyQuqSHt7ma3Ns601xykeBK/rDeZa3w6IS6UtMQbixO5DWy+8TilKkviGDH6jtWCo8FGRKEK5cLLkPvEammQ==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.32.1", - "@typescript-eslint/type-utils": "8.32.1", - "@typescript-eslint/utils": "8.32.1", - "@typescript-eslint/visitor-keys": "8.32.1", + "@typescript-eslint/scope-manager": "8.33.0", + "@typescript-eslint/type-utils": "8.33.0", + "@typescript-eslint/utils": "8.33.0", + "@typescript-eslint/visitor-keys": "8.33.0", "graphemer": "^1.4.0", "ignore": "^7.0.0", "natural-compare": "^1.4.0", @@ -2492,7 +2492,7 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "@typescript-eslint/parser": "^8.33.0", "eslint": "^8.57.0 || ^9.0.0", "typescript": ">=4.8.4 <5.9.0" } @@ -2508,16 +2508,16 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.32.1.tgz", - "integrity": "sha512-LKMrmwCPoLhM45Z00O1ulb6jwyVr2kr3XJp+G+tSEZcbauNnScewcQwtJqXDhXeYPDEjZ8C1SjXm015CirEmGg==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.33.0.tgz", + "integrity": "sha512-JaehZvf6m0yqYp34+RVnihBAChkqeH+tqqhS0GuX1qgPpwLvmTPheKEs6OeCK6hVJgXZHJ2vbjnC9j119auStQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.32.1", - "@typescript-eslint/types": "8.32.1", - "@typescript-eslint/typescript-estree": "8.32.1", - "@typescript-eslint/visitor-keys": "8.32.1", + "@typescript-eslint/scope-manager": "8.33.0", + "@typescript-eslint/types": "8.33.0", + "@typescript-eslint/typescript-estree": "8.33.0", + "@typescript-eslint/visitor-keys": "8.33.0", "debug": "^4.3.4" }, "engines": { @@ -2532,15 +2532,34 @@ "typescript": ">=4.8.4 <5.9.0" } }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.33.0.tgz", + "integrity": "sha512-d1hz0u9l6N+u/gcrk6s6gYdl7/+pp8yHheRTqP6X5hVDKALEaTn8WfGiit7G511yueBEL3OpOEpD+3/MBdoN+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.33.0", + "@typescript-eslint/types": "^8.33.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.32.1.tgz", - "integrity": "sha512-7IsIaIDeZn7kffk7qXC3o6Z4UblZJKV3UBpkvRNpr5NSyLji7tvTcvmnMNYuYLyh26mN8W723xpo3i4MlD33vA==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.33.0.tgz", + "integrity": "sha512-LMi/oqrzpqxyO72ltP+dBSP6V0xiUb4saY7WLtxSfiNEBI8m321LLVFU9/QDJxjDQG9/tjSqKz/E3380TEqSTw==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.32.1", - "@typescript-eslint/visitor-keys": "8.32.1" + "@typescript-eslint/types": "8.33.0", + "@typescript-eslint/visitor-keys": "8.33.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2550,15 +2569,32 @@ "url": "https://opencollective.com/typescript-eslint" } }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.33.0.tgz", + "integrity": "sha512-sTkETlbqhEoiFmGr1gsdq5HyVbSOF0145SYDJ/EQmXHtKViCaGvnyLqWFFHtEXoS0J1yU8Wyou2UGmgW88fEug==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.32.1.tgz", - "integrity": "sha512-mv9YpQGA8iIsl5KyUPi+FGLm7+bA4fgXaeRcFKRDRwDMu4iwrSHeDPipwueNXhdIIZltwCJv+NkxftECbIZWfA==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.33.0.tgz", + "integrity": "sha512-lScnHNCBqL1QayuSrWeqAL5GmqNdVUQAAMTaCwdYEdWfIrSrOGzyLGRCHXcCixa5NK6i5l0AfSO2oBSjCjf4XQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.32.1", - "@typescript-eslint/utils": "8.32.1", + "@typescript-eslint/typescript-estree": "8.33.0", + "@typescript-eslint/utils": "8.33.0", "debug": "^4.3.4", "ts-api-utils": "^2.1.0" }, @@ -2575,9 +2611,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.32.1.tgz", - "integrity": "sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.33.0.tgz", + "integrity": "sha512-DKuXOKpM5IDT1FA2g9x9x1Ug81YuKrzf4mYX8FAVSNu5Wo/LELHWQyM1pQaDkI42bX15PWl0vNPt1uGiIFUOpg==", "dev": true, "license": "MIT", "engines": { @@ -2589,14 +2625,16 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.32.1.tgz", - "integrity": "sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.33.0.tgz", + "integrity": "sha512-vegY4FQoB6jL97Tu/lWRsAiUUp8qJTqzAmENH2k59SJhw0Th1oszb9Idq/FyyONLuNqT1OADJPXfyUNOR8SzAQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.32.1", - "@typescript-eslint/visitor-keys": "8.32.1", + "@typescript-eslint/project-service": "8.33.0", + "@typescript-eslint/tsconfig-utils": "8.33.0", + "@typescript-eslint/types": "8.33.0", + "@typescript-eslint/visitor-keys": "8.33.0", "debug": "^4.3.4", "fast-glob": "^3.3.2", "is-glob": "^4.0.3", @@ -2642,16 +2680,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.32.1.tgz", - "integrity": "sha512-DsSFNIgLSrc89gpq1LJB7Hm1YpuhK086DRDJSNrewcGvYloWW1vZLHBTIvarKZDcAORIy/uWNx8Gad+4oMpkSA==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.33.0.tgz", + "integrity": "sha512-lPFuQaLA9aSNa7D5u2EpRiqdAUhzShwGg/nhpBlc4GR6kcTABttCuyjFs8BcEZ8VWrjCBof/bePhP3Q3fS+Yrw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.7.0", - "@typescript-eslint/scope-manager": "8.32.1", - "@typescript-eslint/types": "8.32.1", - "@typescript-eslint/typescript-estree": "8.32.1" + "@typescript-eslint/scope-manager": "8.33.0", + "@typescript-eslint/types": "8.33.0", + "@typescript-eslint/typescript-estree": "8.33.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2666,13 +2704,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.32.1.tgz", - "integrity": "sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.33.0.tgz", + "integrity": "sha512-7RW7CMYoskiz5OOGAWjJFxgb7c5UNjTG292gYhWeOAcFmYCtVCSqjqSBj5zMhxbXo2JOW95YYrUWJfU0zrpaGQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.32.1", + "@typescript-eslint/types": "8.33.0", "eslint-visitor-keys": "^4.2.0" }, "engines": { @@ -2731,9 +2769,9 @@ } }, "node_modules/@vscode/vsce": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.4.1.tgz", - "integrity": "sha512-fDxgoGTQZ42+GdVWrOsxioXfS8VkDwjWNgaXqMNV2GCUmPmr45Rqs97PROqF7h+gKgrKOHmtQCBjeD4Wd/sRCQ==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-3.4.2.tgz", + "integrity": "sha512-U2gC7GiQc22nxRpWH4cdW16rRr5u9w+Bjsjm8g8mEjY4aeOG1U6/3XNGq+ElwdeoT8jAyhBmBAuYG7INcSe/6A==", "dev": true, "license": "MIT", "dependencies": { @@ -2923,42 +2961,42 @@ ] }, "node_modules/@vue/compiler-core": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.14.tgz", - "integrity": "sha512-k7qMHMbKvoCXIxPhquKQVw3Twid3Kg4s7+oYURxLGRd56LiuHJVrvFKI4fm2AM3c8apqODPfVJGoh8nePbXMRA==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.16.tgz", + "integrity": "sha512-AOQS2eaQOaaZQoL1u+2rCJIKDruNXVBZSiUD3chnUrsoX5ZTQMaCvXlWNIfxBJuU15r1o7+mpo5223KVtIhAgQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/parser": "^7.27.2", - "@vue/shared": "3.5.14", + "@vue/shared": "3.5.16", "entities": "^4.5.0", "estree-walker": "^2.0.2", "source-map-js": "^1.2.1" } }, "node_modules/@vue/compiler-dom": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.14.tgz", - "integrity": "sha512-1aOCSqxGOea5I80U2hQJvXYpPm/aXo95xL/m/mMhgyPUsKe9jhjwWpziNAw7tYRnbz1I61rd9Mld4W9KmmRoug==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.16.tgz", + "integrity": "sha512-SSJIhBr/teipXiXjmWOVWLnxjNGo65Oj/8wTEQz0nqwQeP75jWZ0n4sF24Zxoht1cuJoWopwj0J0exYwCJ0dCQ==", "dev": true, "license": "MIT", "dependencies": { - "@vue/compiler-core": "3.5.14", - "@vue/shared": "3.5.14" + "@vue/compiler-core": "3.5.16", + "@vue/shared": "3.5.16" } }, "node_modules/@vue/compiler-sfc": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.14.tgz", - "integrity": "sha512-9T6m/9mMr81Lj58JpzsiSIjBgv2LiVoWjIVa7kuXHICUi8LiDSIotMpPRXYJsXKqyARrzjT24NAwttrMnMaCXA==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.16.tgz", + "integrity": "sha512-rQR6VSFNpiinDy/DVUE0vHoIDUF++6p910cgcZoaAUm3POxgNOOdS/xgoll3rNdKYTYPnnbARDCZOyZ+QSe6Pw==", "dev": true, "license": "MIT", "dependencies": { "@babel/parser": "^7.27.2", - "@vue/compiler-core": "3.5.14", - "@vue/compiler-dom": "3.5.14", - "@vue/compiler-ssr": "3.5.14", - "@vue/shared": "3.5.14", + "@vue/compiler-core": "3.5.16", + "@vue/compiler-dom": "3.5.16", + "@vue/compiler-ssr": "3.5.16", + "@vue/shared": "3.5.16", "estree-walker": "^2.0.2", "magic-string": "^0.30.17", "postcss": "^8.5.3", @@ -2966,14 +3004,14 @@ } }, "node_modules/@vue/compiler-ssr": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.14.tgz", - "integrity": "sha512-Y0G7PcBxr1yllnHuS/NxNCSPWnRGH4Ogrp0tsLA5QemDZuJLs99YjAKQ7KqkHE0vCg4QTKlQzXLKCMF7WPSl7Q==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.16.tgz", + "integrity": "sha512-d2V7kfxbdsjrDSGlJE7my1ZzCXViEcqN6w14DOsDrUCHEA6vbnVCpRFfrc4ryCP/lCKzX2eS1YtnLE/BuC9f/A==", "dev": true, "license": "MIT", "dependencies": { - "@vue/compiler-dom": "3.5.14", - "@vue/shared": "3.5.14" + "@vue/compiler-dom": "3.5.16", + "@vue/shared": "3.5.16" } }, "node_modules/@vue/devtools-api": { @@ -3013,57 +3051,57 @@ } }, "node_modules/@vue/reactivity": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.14.tgz", - "integrity": "sha512-7cK1Hp343Fu/SUCCO52vCabjvsYu7ZkOqyYu7bXV9P2yyfjUMUXHZafEbq244sP7gf+EZEz+77QixBTuEqkQQw==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.16.tgz", + "integrity": "sha512-FG5Q5ee/kxhIm1p2bykPpPwqiUBV3kFySsHEQha5BJvjXdZTUfmya7wP7zC39dFuZAcf/PD5S4Lni55vGLMhvA==", "dev": true, "license": "MIT", "dependencies": { - "@vue/shared": "3.5.14" + "@vue/shared": "3.5.16" } }, "node_modules/@vue/runtime-core": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.14.tgz", - "integrity": "sha512-w9JWEANwHXNgieAhxPpEpJa+0V5G0hz3NmjAZwlOebtfKyp2hKxKF0+qSh0Xs6/PhfGihuSdqMprMVcQU/E6ag==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.16.tgz", + "integrity": "sha512-bw5Ykq6+JFHYxrQa7Tjr+VSzw7Dj4ldR/udyBZbq73fCdJmyy5MPIFR9IX/M5Qs+TtTjuyUTCnmK3lWWwpAcFQ==", "dev": true, "license": "MIT", "dependencies": { - "@vue/reactivity": "3.5.14", - "@vue/shared": "3.5.14" + "@vue/reactivity": "3.5.16", + "@vue/shared": "3.5.16" } }, "node_modules/@vue/runtime-dom": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.14.tgz", - "integrity": "sha512-lCfR++IakeI35TVR80QgOelsUIdcKjd65rWAMfdSlCYnaEY5t3hYwru7vvcWaqmrK+LpI7ZDDYiGU5V3xjMacw==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.16.tgz", + "integrity": "sha512-T1qqYJsG2xMGhImRUV9y/RseB9d0eCYZQ4CWca9ztCuiPj/XWNNN+lkNBuzVbia5z4/cgxdL28NoQCvC0Xcfww==", "dev": true, "license": "MIT", "dependencies": { - "@vue/reactivity": "3.5.14", - "@vue/runtime-core": "3.5.14", - "@vue/shared": "3.5.14", + "@vue/reactivity": "3.5.16", + "@vue/runtime-core": "3.5.16", + "@vue/shared": "3.5.16", "csstype": "^3.1.3" } }, "node_modules/@vue/server-renderer": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.14.tgz", - "integrity": "sha512-Rf/ISLqokIvcySIYnv3tNWq40PLpNLDLSJwwVWzG6MNtyIhfbcrAxo5ZL9nARJhqjZyWWa40oRb2IDuejeuv6w==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.16.tgz", + "integrity": "sha512-BrX0qLiv/WugguGsnQUJiYOE0Fe5mZTwi6b7X/ybGB0vfrPH9z0gD/Y6WOR1sGCgX4gc25L1RYS5eYQKDMoNIg==", "dev": true, "license": "MIT", "dependencies": { - "@vue/compiler-ssr": "3.5.14", - "@vue/shared": "3.5.14" + "@vue/compiler-ssr": "3.5.16", + "@vue/shared": "3.5.16" }, "peerDependencies": { - "vue": "3.5.14" + "vue": "3.5.16" } }, "node_modules/@vue/shared": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.14.tgz", - "integrity": "sha512-oXTwNxVfc9EtP1zzXAlSlgARLXNC84frFYkS0HHz0h3E4WZSP9sywqjqzGCP9Y34M8ipNmd380pVgmMuwELDyQ==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.16.tgz", + "integrity": "sha512-c/0fWy3Jw6Z8L9FmTyYfkpM5zklnqqa9+a6dz3DvONRKW2NEbh46BP0FHuLFSWi2TnQEtp91Z6zOWNrU6QiyPg==", "dev": true, "license": "MIT" }, @@ -3708,9 +3746,9 @@ } }, "node_modules/browserslist": { - "version": "4.24.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz", - "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==", + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.0.tgz", + "integrity": "sha512-PJ8gYKeS5e/whHBh8xrwYK+dAvEj7JXtz6uTucnMRB8OiGTsKccFekoRrjajPBHV8oOY+2tI4uxeceSimKwMFA==", "dev": true, "funding": [ { @@ -3729,8 +3767,8 @@ "license": "MIT", "peer": true, "dependencies": { - "caniuse-lite": "^1.0.30001716", - "electron-to-chromium": "^1.5.149", + "caniuse-lite": "^1.0.30001718", + "electron-to-chromium": "^1.5.160", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.3" }, @@ -3850,9 +3888,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001718", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz", - "integrity": "sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==", + "version": "1.0.30001720", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001720.tgz", + "integrity": "sha512-Ec/2yV2nNPwb4DnTANEV99ZWwm3ZWfdlfkQbWSDDt+PsXEVYwlhPH8tdMaPunYTKKmz7AnHi2oNEi1GcmKCD8g==", "dev": true, "funding": [ { @@ -4372,9 +4410,9 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.5.155", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.155.tgz", - "integrity": "sha512-ps5KcGGmwL8VaeJlvlDlu4fORQpv3+GIcF5I3f9tUKUlJ/wsysh6HU8P5L1XWRYeXfA0oJd4PyM8ds8zTFf6Ng==", + "version": "1.5.161", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.161.tgz", + "integrity": "sha512-hwtetwfKNZo/UlwHIVBlKZVdy7o8bIZxxKs0Mv/ROPiQQQmDgdm5a+KvKtBsxM8ZjFzTaCeLoodZ8jiBE3o9rA==", "dev": true, "license": "ISC", "peer": true @@ -4513,9 +4551,9 @@ } }, "node_modules/esbuild": { - "version": "0.25.4", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.4.tgz", - "integrity": "sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz", + "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -4526,31 +4564,31 @@ "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.4", - "@esbuild/android-arm": "0.25.4", - "@esbuild/android-arm64": "0.25.4", - "@esbuild/android-x64": "0.25.4", - "@esbuild/darwin-arm64": "0.25.4", - "@esbuild/darwin-x64": "0.25.4", - "@esbuild/freebsd-arm64": "0.25.4", - "@esbuild/freebsd-x64": "0.25.4", - "@esbuild/linux-arm": "0.25.4", - "@esbuild/linux-arm64": "0.25.4", - "@esbuild/linux-ia32": "0.25.4", - "@esbuild/linux-loong64": "0.25.4", - "@esbuild/linux-mips64el": "0.25.4", - "@esbuild/linux-ppc64": "0.25.4", - "@esbuild/linux-riscv64": "0.25.4", - "@esbuild/linux-s390x": "0.25.4", - "@esbuild/linux-x64": "0.25.4", - "@esbuild/netbsd-arm64": "0.25.4", - "@esbuild/netbsd-x64": "0.25.4", - "@esbuild/openbsd-arm64": "0.25.4", - "@esbuild/openbsd-x64": "0.25.4", - "@esbuild/sunos-x64": "0.25.4", - "@esbuild/win32-arm64": "0.25.4", - "@esbuild/win32-ia32": "0.25.4", - "@esbuild/win32-x64": "0.25.4" + "@esbuild/aix-ppc64": "0.25.5", + "@esbuild/android-arm": "0.25.5", + "@esbuild/android-arm64": "0.25.5", + "@esbuild/android-x64": "0.25.5", + "@esbuild/darwin-arm64": "0.25.5", + "@esbuild/darwin-x64": "0.25.5", + "@esbuild/freebsd-arm64": "0.25.5", + "@esbuild/freebsd-x64": "0.25.5", + "@esbuild/linux-arm": "0.25.5", + "@esbuild/linux-arm64": "0.25.5", + "@esbuild/linux-ia32": "0.25.5", + "@esbuild/linux-loong64": "0.25.5", + "@esbuild/linux-mips64el": "0.25.5", + "@esbuild/linux-ppc64": "0.25.5", + "@esbuild/linux-riscv64": "0.25.5", + "@esbuild/linux-s390x": "0.25.5", + "@esbuild/linux-x64": "0.25.5", + "@esbuild/netbsd-arm64": "0.25.5", + "@esbuild/netbsd-x64": "0.25.5", + "@esbuild/openbsd-arm64": "0.25.5", + "@esbuild/openbsd-x64": "0.25.5", + "@esbuild/sunos-x64": "0.25.5", + "@esbuild/win32-arm64": "0.25.5", + "@esbuild/win32-ia32": "0.25.5", + "@esbuild/win32-x64": "0.25.5" } }, "node_modules/escalade": { @@ -4665,14 +4703,14 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.0.tgz", - "integrity": "sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==", + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.1.tgz", + "integrity": "sha512-9dF+KuU/Ilkq27A8idRP7N2DH8iUR6qXcjF3FR2wETY21PZdBrIjwCau8oboyGj9b7etWmTGEeM8e7oOed6ZWg==", "dev": true, "license": "MIT", "dependencies": { "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.11.0" + "synckit": "^0.11.7" }, "engines": { "node": "^14.18.0 || >=16.0.0" @@ -5104,9 +5142,9 @@ "license": "ISC" }, "node_modules/focus-trap": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.4.tgz", - "integrity": "sha512-xx560wGBk7seZ6y933idtjJQc1l+ck+pI3sKvhKozdBV1dRZoKhkW5xoCaFv9tQiX5RH1xfSxjuNu6g+lmN/gw==", + "version": "7.6.5", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.6.5.tgz", + "integrity": "sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==", "dev": true, "license": "MIT", "dependencies": { @@ -5333,9 +5371,9 @@ } }, "node_modules/globals": { - "version": "16.1.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-16.1.0.tgz", - "integrity": "sha512-aibexHNbb/jiUSObBgpHLj+sIuUmJnYcgXBlrfsiDZ9rt4aF2TFRbyLgZ2iFQuVZ1K5Mx3FVkbKRSgKrbK3K2g==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-16.2.0.tgz", + "integrity": "sha512-O+7l9tPdHCU320IigZZPj5zmRCFG9xHmx9cU8FqU2Rp+JN714seHV+2S9+JslCpY4gJwU2vOGox0wzgae/MCEg==", "dev": true, "license": "MIT", "engines": { @@ -5871,9 +5909,9 @@ } }, "node_modules/jackspeak": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz", - "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.1.tgz", + "integrity": "sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { @@ -7383,9 +7421,9 @@ } }, "node_modules/postcss": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", - "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.4.tgz", + "integrity": "sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==", "dev": true, "funding": [ { @@ -7403,7 +7441,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.8", + "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -7412,9 +7450,9 @@ } }, "node_modules/preact": { - "version": "10.26.6", - "resolved": "https://registry.npmjs.org/preact/-/preact-10.26.6.tgz", - "integrity": "sha512-5SRRBinwpwkaD+OqlBDeITlRgvd8I8QlxHJw9AxSdMNV6O+LodN9nUyYGpSF7sadHjs6RzeFShMexC6DbtWr9g==", + "version": "10.26.8", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.26.8.tgz", + "integrity": "sha512-1nMfdFjucm5hKvq0IClqZwK4FJkGXhRrQstOQ3P4vp8HxKrJEMFcY6RdBRVTdfQS/UlnX6gfbPuTvaqx/bDoeQ==", "dev": true, "license": "MIT", "funding": { @@ -7745,9 +7783,9 @@ "license": "MIT" }, "node_modules/rollup": { - "version": "4.41.0", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.41.0.tgz", - "integrity": "sha512-HqMFpUbWlf/tvcxBFNKnJyzc7Lk+XO3FGc3pbNBLqEbOz0gPLRgcrlS3UF4MfUrVlstOaP/q0kM6GVvi+LrLRg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.41.1.tgz", + "integrity": "sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==", "dev": true, "license": "MIT", "dependencies": { @@ -7761,26 +7799,26 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.41.0", - "@rollup/rollup-android-arm64": "4.41.0", - "@rollup/rollup-darwin-arm64": "4.41.0", - "@rollup/rollup-darwin-x64": "4.41.0", - "@rollup/rollup-freebsd-arm64": "4.41.0", - "@rollup/rollup-freebsd-x64": "4.41.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.41.0", - "@rollup/rollup-linux-arm-musleabihf": "4.41.0", - "@rollup/rollup-linux-arm64-gnu": "4.41.0", - "@rollup/rollup-linux-arm64-musl": "4.41.0", - "@rollup/rollup-linux-loongarch64-gnu": "4.41.0", - "@rollup/rollup-linux-powerpc64le-gnu": "4.41.0", - "@rollup/rollup-linux-riscv64-gnu": "4.41.0", - "@rollup/rollup-linux-riscv64-musl": "4.41.0", - "@rollup/rollup-linux-s390x-gnu": "4.41.0", - "@rollup/rollup-linux-x64-gnu": "4.41.0", - "@rollup/rollup-linux-x64-musl": "4.41.0", - "@rollup/rollup-win32-arm64-msvc": "4.41.0", - "@rollup/rollup-win32-ia32-msvc": "4.41.0", - "@rollup/rollup-win32-x64-msvc": "4.41.0", + "@rollup/rollup-android-arm-eabi": "4.41.1", + "@rollup/rollup-android-arm64": "4.41.1", + "@rollup/rollup-darwin-arm64": "4.41.1", + "@rollup/rollup-darwin-x64": "4.41.1", + "@rollup/rollup-freebsd-arm64": "4.41.1", + "@rollup/rollup-freebsd-x64": "4.41.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.41.1", + "@rollup/rollup-linux-arm-musleabihf": "4.41.1", + "@rollup/rollup-linux-arm64-gnu": "4.41.1", + "@rollup/rollup-linux-arm64-musl": "4.41.1", + "@rollup/rollup-linux-loongarch64-gnu": "4.41.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.41.1", + "@rollup/rollup-linux-riscv64-gnu": "4.41.1", + "@rollup/rollup-linux-riscv64-musl": "4.41.1", + "@rollup/rollup-linux-s390x-gnu": "4.41.1", + "@rollup/rollup-linux-x64-gnu": "4.41.1", + "@rollup/rollup-linux-x64-musl": "4.41.1", + "@rollup/rollup-win32-arm64-msvc": "4.41.1", + "@rollup/rollup-win32-ia32-msvc": "4.41.1", + "@rollup/rollup-win32-x64-msvc": "4.41.1", "fsevents": "~2.3.2" } }, @@ -7926,17 +7964,17 @@ "peer": true }, "node_modules/secretlint": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/secretlint/-/secretlint-9.3.2.tgz", - "integrity": "sha512-IuFrtWMGeVFSWpuhn1T6JC0mgfwD9rbFNZG1aWtpkBKOUCbcKZ+RoJcJjdJ0DXv8oa9vRg/+DZUl6Q6omZdPQQ==", + "version": "9.3.3", + "resolved": "https://registry.npmjs.org/secretlint/-/secretlint-9.3.3.tgz", + "integrity": "sha512-JTIsI8BEon8Oo6P7YvGq3I3qCZuYgCvekU8qr4OYyvo6N/wHGg4JMruT5MVkxh3q0diX11xsqaptmeTP5/wNxQ==", "dev": true, "license": "MIT", "dependencies": { - "@secretlint/config-creator": "^9.3.2", - "@secretlint/formatter": "^9.3.2", - "@secretlint/node": "^9.3.2", - "@secretlint/profiler": "^9.3.2", - "debug": "^4.4.0", + "@secretlint/config-creator": "^9.3.3", + "@secretlint/formatter": "^9.3.3", + "@secretlint/node": "^9.3.3", + "@secretlint/profiler": "^9.3.3", + "debug": "^4.4.1", "globby": "^14.1.0", "read-pkg": "^8.1.0" }, @@ -8552,9 +8590,9 @@ } }, "node_modules/synckit": { - "version": "0.11.6", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.6.tgz", - "integrity": "sha512-2pR2ubZSV64f/vqm9eLPz/KOvR9Dm+Co/5ChLgeHl0yEDRc6h5hXHoxEQH8Y5Ljycozd3p1k5TTSVdzYGkPvLw==", + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.8.tgz", + "integrity": "sha512-+XZ+r1XGIJGeQk3VvXhT6xx/VpbHsRzsTkGgF6E5RX9TTXD0118l87puaEBZ566FhqblC6U0d4XnubznJDm30A==", "dev": true, "license": "MIT", "dependencies": { @@ -8626,9 +8664,9 @@ } }, "node_modules/tar-fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz", - "integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz", + "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==", "dev": true, "license": "MIT", "optional": true, @@ -8675,9 +8713,9 @@ } }, "node_modules/terser": { - "version": "5.39.2", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.2.tgz", - "integrity": "sha512-yEPUmWve+VA78bI71BW70Dh0TuV4HHd+I5SHOAfS1+QBOmvmCiiffgjR8ryyEd3KIfvPGFqoADt8LdQ6XpXIvg==", + "version": "5.40.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.40.0.tgz", + "integrity": "sha512-cfeKl/jjwSR5ar7d0FGmave9hFGJT8obyo0z+CrQOylLDbk7X81nPU6vq9VORa5jU30SkDnT2FXjLbR8HLP+xA==", "dev": true, "license": "BSD-2-Clause", "peer": true, @@ -8993,15 +9031,15 @@ } }, "node_modules/typescript-eslint": { - "version": "8.32.1", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.32.1.tgz", - "integrity": "sha512-D7el+eaDHAmXvrZBy1zpzSNIRqnCOrkwTgZxTu3MUqRWk8k0q9m9Ho4+vPf7iHtgUfrK/o8IZaEApsxPlHTFCg==", + "version": "8.33.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.33.0.tgz", + "integrity": "sha512-5YmNhF24ylCsvdNW2oJwMzTbaeO4bg90KeGtMjUw0AGtHksgEPLRTUil+coHwCfiu4QjVJFnjp94DmU6zV7DhQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/eslint-plugin": "8.32.1", - "@typescript-eslint/parser": "8.32.1", - "@typescript-eslint/utils": "8.32.1" + "@typescript-eslint/eslint-plugin": "8.33.0", + "@typescript-eslint/parser": "8.33.0", + "@typescript-eslint/utils": "8.33.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -9965,17 +10003,17 @@ "license": "MIT" }, "node_modules/vue": { - "version": "3.5.14", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.14.tgz", - "integrity": "sha512-LbOm50/vZFG6Mhy6KscQYXZMQ0LMCC/y40HDJPPvGFQ+i/lUH+PJHR6C3assgOQiXdl6tAfsXHbXYVBZZu65ew==", + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.16.tgz", + "integrity": "sha512-rjOV2ecxMd5SiAmof2xzh2WxntRcigkX/He4YFJ6WdRvVUrbt6DxC1Iujh10XLl8xCDRDtGKMeO3D+pRQ1PP9w==", "dev": true, "license": "MIT", "dependencies": { - "@vue/compiler-dom": "3.5.14", - "@vue/compiler-sfc": "3.5.14", - "@vue/runtime-dom": "3.5.14", - "@vue/server-renderer": "3.5.14", - "@vue/shared": "3.5.14" + "@vue/compiler-dom": "3.5.16", + "@vue/compiler-sfc": "3.5.16", + "@vue/runtime-dom": "3.5.16", + "@vue/server-renderer": "3.5.16", + "@vue/shared": "3.5.16" }, "peerDependencies": { "typescript": "*" @@ -9987,9 +10025,9 @@ } }, "node_modules/watchpack": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.3.tgz", - "integrity": "sha512-adBYQLivcg1jbdKEJeqScJJFvgm4qY9+3tXw+jdG6lkVeqRJEtiQmSWjmth8GKmDZuX7sYM4YFxQsf0AzMfGGw==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "dev": true, "license": "MIT", "peer": true, @@ -10193,9 +10231,9 @@ } }, "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.0.tgz", + "integrity": "sha512-77R0RDmJfj9dyv5p3bM5pOHa+X8/ZkO9c7kpDstigkC4nIDobadsfSGCwB4bKhMVxqAok8tajaoR8rirM7+VFQ==", "dev": true, "license": "MIT", "peer": true, diff --git a/package.json b/package.json index 11aba0ad..640e1a21 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ }, "qna": "https://github.com/robotcodedev/robotcode/discussions/categories/q-a", "engines": { - "vscode": "^1.96.0" + "vscode": "^1.99.0" }, "categories": [ "Programming Languages", @@ -1969,22 +1969,22 @@ "@eslint/js": "^9.27.0", "@jgoz/esbuild-plugin-typecheck": "^4.0.3", "@types/fs-extra": "^11.0.4", - "@types/node": "^22.15.19", - "@types/vscode": "^1.96.0", + "@types/node": "^22.15.27", + "@types/vscode": "^1.99.0", "@types/vscode-notebook-renderer": "^1.72.3", "@vscode/python-extension": "^1.0.5", - "@vscode/vsce": "^3.4.1", - "esbuild": "^0.25.4", + "@vscode/vsce": "^3.4.2", + "esbuild": "^0.25.5", "eslint": "^9.27.0", "eslint-config-prettier": "^10.1.5", - "eslint-plugin-prettier": "^5.4.0", - "globals": "^16.1.0", + "eslint-plugin-prettier": "^5.4.1", + "globals": "^16.2.0", "ovsx": "^0.10.2", - "preact": "^10.26.6", + "preact": "^10.26.8", "prettier": "^3.5.3", "ts-loader": "^9.5.2", "typescript": "^5.8.3", - "typescript-eslint": "^8.32.1" + "typescript-eslint": "^8.33.0" }, "workspaces": [ "docs" From a311e996cf95b2afaacc4b4402a4e2749b8d46bc Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Sat, 31 May 2025 00:46:52 +0200 Subject: [PATCH 008/110] feat(vscode): add language model tools for retrieving library documentation and environment details --- eslint.config.mjs | 1 + package-lock.json | 7 + package.json | 65 +++++++- .../robotframework/parts/keywords_treeview.py | 55 +++++++ .../robotframework/parts/project_info.py | 8 + vscode-client/extension/index.ts | 6 + .../extension/languageclientsmanger.ts | 31 ++++ vscode-client/extension/lmTools.tsx | 143 ++++++++++++++++++ vscode-client/extension/tsconfig.json | 5 +- 9 files changed, 318 insertions(+), 3 deletions(-) create mode 100644 vscode-client/extension/lmTools.tsx diff --git a/eslint.config.mjs b/eslint.config.mjs index 4ae71029..12157fce 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -19,6 +19,7 @@ export default [ "**/docs/", "**/packages/", "**/js", + "**/build/", ], }, { files: ["**/*.{ts,tsx}"] }, diff --git a/package-lock.json b/package-lock.json index e93ee3f6..b3e7da12 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,6 +17,7 @@ "docs" ], "dependencies": { + "@vscode/prompt-tsx": "^0.4.0-alpha.4", "ansi-colors": "^4.1.3", "fs-extra": "^11.3.0", "vscode-languageclient": "^9.0.1" @@ -2757,6 +2758,12 @@ "vue": "^3.2.25" } }, + "node_modules/@vscode/prompt-tsx": { + "version": "0.4.0-alpha.4", + "resolved": "https://registry.npmjs.org/@vscode/prompt-tsx/-/prompt-tsx-0.4.0-alpha.4.tgz", + "integrity": "sha512-iSFpeKutM/i2Gw41q3T/sKOTO1yqaFieh2jYcprwlkgzCAkNuhpeGwY84FnqW9Nwb8SfmaBqGtrGYX694TX7NQ==", + "license": "MIT" + }, "node_modules/@vscode/python-extension": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@vscode/python-extension/-/python-extension-1.0.5.tgz", diff --git a/package.json b/package.json index 640e1a21..b10183c4 100644 --- a/package.json +++ b/package.json @@ -1940,6 +1940,66 @@ } ] } + ], + "chatParticipants":[ + + ], + "languageModelTools": [ + { + "name": "robot-get_library_doc", + "displayName": "Get Library Documentation", + "toolReferenceName": "robotGetLibraryDoc", + "modelDescription": "Gets the library documentation for the given library name. This includes keywords, documentation, and other information about the library.", + "userDescription": "Gets documentation for the given library.", + "canBeReferencedInPrompt": true, + "tags": [ + "robot", + "robotframework", + "robotframework-library", + "robotframework-keyword", + "robotcode" + ], + "icon": "$(robotcode-robot)", + "inputSchema": { + "type": "object", + "required": [ + "libraryName" + ], + "properties": { + "libraryName": { + "type": "string", + "description": "The name of the library." + }, + "resourcePath": { + "type": "string", + "description": "The path to the robot framework file or workspace to get the library information for." + } + } + } + }, + { + "name": "robot-get_environment_details", + "displayName": "Get Robot Framework Environment Informations", + "toolReferenceName": "robotGetEnvironmentInfo", + "modelDescription": "This tool will retrieve the details of the Robot Framework Environment for the specified file or workspace. This includes informations about the python interpreter, like the version and the executable path, and the versions of robot framework, RobotCode, robocop and robotidy if installed.", + "userDescription": "Gets informations about the Robot Framework Environment.", + "canBeReferencedInPrompt": true, + "tags": [ + "robot", + "robotframework", + "robotcode" + ], + "icon": "$(robotcode-robot)", + "inputSchema": { + "type": "object", + "properties": { + "resourcePath": { + "type": "string", + "description": "The path to the robot framework file or workspace to get the details for." + } + } + } + } ] }, "scripts": { @@ -1961,7 +2021,8 @@ "dependencies": { "ansi-colors": "^4.1.3", "fs-extra": "^11.3.0", - "vscode-languageclient": "^9.0.1" + "vscode-languageclient": "^9.0.1", + "@vscode/prompt-tsx": "^0.4.0-alpha.4" }, "devDependencies": { "@eslint/compat": "^1.2.9", @@ -1989,4 +2050,4 @@ "workspaces": [ "docs" ] -} +} \ No newline at end of file diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py index d4a53f36..cdf509f8 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py @@ -2,6 +2,7 @@ from typing import TYPE_CHECKING, Any, List, Optional from robotcode.core.lsp.types import TextDocumentIdentifier +from robotcode.core.uri import Uri from robotcode.core.utils.dataclasses import CamelSnakeMixin from robotcode.core.utils.logging import LoggingDescriptor from robotcode.jsonrpc2.protocol import rpc_method @@ -18,6 +19,12 @@ class GetDocumentImportsParams(CamelSnakeMixin): text_document: TextDocumentIdentifier +@dataclass(repr=False) +class GetLibraryDocumentationParams(CamelSnakeMixin): + workspace_folder_uri: str + library_name: str + + @dataclass(repr=False) class Keyword(CamelSnakeMixin): name: str @@ -26,6 +33,14 @@ class Keyword(CamelSnakeMixin): documentation: Optional[str] = None +@dataclass(repr=False) +class LibraryDocumentation(CamelSnakeMixin): + name: str + documentation: Optional[str] = None + keywords: Optional[List[Keyword]] = None + initializers: Optional[List[Keyword]] = None + + @dataclass(repr=False) class DocumentImport(CamelSnakeMixin): name: str @@ -165,3 +180,43 @@ def _get_documentation_url( ) return None + + @rpc_method( + name="robot/keywordsview/getLibraryDocumentation", param_type=GetLibraryDocumentationParams, threaded=True + ) + @_logger.call + def _get_library_documentation( + self, + workspace_folder_uri: str, + library_name: str, + *args: Any, + **kwargs: Any, + ) -> Optional[LibraryDocumentation]: + imports_manager = self.parent.documents_cache.get_imports_manager_for_uri(Uri(workspace_folder_uri)) + + libdoc = imports_manager.get_libdoc_for_library_import(library_name, (), ".") + if libdoc.errors: + raise ValueError(f"Errors while loading library documentation: {libdoc.errors}") + + return LibraryDocumentation( + name=libdoc.name, + documentation=libdoc.to_markdown(), + keywords=[ + Keyword( + l.name, + str(hash(l)), + l.parameter_signature(), + l.to_markdown(), + ) + for l in libdoc.keywords.values() + ], + initializers=[ + Keyword( + s.name, + str(hash(s)), + s.parameter_signature(), + s.to_markdown(), + ) + for s in libdoc.inits.values() + ], + ) diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py index 33fad7f5..b63afc0f 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/project_info.py @@ -1,3 +1,4 @@ +import sys from dataclasses import dataclass from typing import TYPE_CHECKING, Any, Optional @@ -7,6 +8,7 @@ from robotcode.core.utils.logging import LoggingDescriptor from robotcode.jsonrpc2.protocol import rpc_method +from ...__version__ import __version__ as robotcode_version from .protocol_part import RobotLanguageServerProtocolPart from .robocop_tidy_mixin import RoboCopTidyMixin @@ -19,6 +21,9 @@ class ProjectInfo(CamelSnakeMixin): robot_version_string: str robocop_version_string: Optional[str] tidy_version_string: Optional[str] = None + python_version_string: Optional[str] = None + python_executable: Optional[str] = None + robot_code_version_string: Optional[str] = None class ProjectInfoPart(RobotLanguageServerProtocolPart, RoboCopTidyMixin): @@ -46,4 +51,7 @@ def _robot_project_info( robot_version_string=get_version(), robocop_version_string=robocop_version_string, tidy_version_string=tidy_version_string, + python_version_string=sys.version, + python_executable=sys.executable, + robot_code_version_string=robotcode_version, ) diff --git a/vscode-client/extension/index.ts b/vscode-client/extension/index.ts index 887c45c5..b1df47e3 100644 --- a/vscode-client/extension/index.ts +++ b/vscode-client/extension/index.ts @@ -7,6 +7,7 @@ import { KeywordsTreeViewProvider } from "./keywordsTreeViewProvider"; import { LanguageToolsManager } from "./languageToolsManager"; import { NotebookManager } from "./notebook"; import path from "path"; +import { GetEnvironmentDetails, GetLibDocTool } from "./lmTools"; class TerminalLink extends vscode.TerminalLink { constructor( @@ -153,6 +154,11 @@ export async function activateAsync(context: vscode.ExtensionContext): Promise { + const client = await this.getLanguageClientForResource(workspace_folder.uri); + + if (!client) return undefined; + + return ( + (await client.sendRequest( + "robot/keywordsview/getLibraryDocumentation", + { + workspaceFolderUri: workspace_folder.uri.toString(), + libraryName: libraryName, + }, + token ?? new vscode.CancellationTokenSource().token, + )) ?? undefined + ); + } + public async getDocumentKeywords( document: vscode.TextDocument, token?: vscode.CancellationToken | undefined, diff --git a/vscode-client/extension/lmTools.tsx b/vscode-client/extension/lmTools.tsx new file mode 100644 index 00000000..75382be2 --- /dev/null +++ b/vscode-client/extension/lmTools.tsx @@ -0,0 +1,143 @@ +/* eslint-disable class-methods-use-this */ +import * as vscode from "vscode"; +import { LanguageClientsManager } from "./languageclientsmanger"; + +function resolveWorkspaceFolder(filepath?: string): vscode.WorkspaceFolder | undefined { + if (!filepath) { + return vscode.workspace.workspaceFolders ? vscode.workspace.workspaceFolders[0] : undefined; + } + + try { + return vscode.workspace.getWorkspaceFolder(vscode.Uri.parse(filepath)); + } catch { + return vscode.workspace.getWorkspaceFolder(vscode.Uri.file(filepath)); + } +} + +interface GetLibDocToolParamters { + libraryName: string; + resourcePath?: string; +} + +export class GetLibDocTool implements vscode.LanguageModelTool { + constructor( + public readonly extensionContext: vscode.ExtensionContext, + public readonly languageClientsManager: LanguageClientsManager, + public readonly outputChannel: vscode.OutputChannel, + ) {} + + async invoke( + options: vscode.LanguageModelToolInvocationOptions, + token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + + if (!workspaceFolder) { + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart("No workspace folder found. Please open a Robot Framework project."), + ]); + } + + const libdoc = await this.languageClientsManager.getLibraryDocumentation( + workspaceFolder, + options.input.libraryName, + token, + ); + if (!libdoc) { + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart( + "Failed to retrieve library documentation. Ensure the Robot Framework extension is properly configured and the library is installed.", + ), + ]); + } + + const keywords = libdoc.keywords + ? libdoc.keywords.map( + (kw) => new vscode.LanguageModelTextPart(`${kw.documentation || "No documentation available."}`), + ) + : [new vscode.LanguageModelTextPart("No keywords available.")]; + + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart(libdoc.documentation ?? "No documentation available."), + ...keywords, + ]); + } + + async prepareInvocation?( + options: vscode.LanguageModelToolInvocationPrepareOptions, + _token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + if (!workspaceFolder) { + return { + invocationMessage: "No workspace folder found. Please open a Robot Framework project.", + }; + } + + return { + invocationMessage: "Retrieving Robot Framework Library details", + }; + } +} + +interface GetEnvironmentDetailsParamters { + resourcePath?: string; +} + +export class GetEnvironmentDetails implements vscode.LanguageModelTool { + constructor( + public readonly extensionContext: vscode.ExtensionContext, + public readonly languageClientsManager: LanguageClientsManager, + public readonly outputChannel: vscode.OutputChannel, + ) {} + + async invoke( + options: vscode.LanguageModelToolInvocationOptions, + token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + + if (!workspaceFolder) { + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart("No workspace folder found. Please open a Robot Framework project."), + ]); + } + + const projectInfo = await this.languageClientsManager.getProjectInfo(workspaceFolder, token); + if (!projectInfo) { + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart( + "Failed to retrieve project information. Ensure the Robot Framework extension is properly configured.", + ), + ]); + } + + const message = [ + "# Environment Details", + `**Workspace Folder:** ${workspaceFolder.name}`, + `**Python Interpreter Version:** ${projectInfo.pythonVersionString || "Not set"}`, + `**Python Executable:** ${projectInfo.pythonExecutable || "Not set"}`, + `**Robot Framework Version:** ${projectInfo.robotVersionString || "Not installed"}`, + `**RobotCode Version:** ${projectInfo.robotCodeVersionString || "Not set"}`, + `**Robocop Version:** ${projectInfo.robocopVersionString || "Not installed"}`, + `**Robotidy Version:** ${projectInfo.tidyVersionString || "Not installed"}`, + ]; + return new vscode.LanguageModelToolResult([new vscode.LanguageModelTextPart(message.join("\n"))]); + } + + async prepareInvocation?( + options: vscode.LanguageModelToolInvocationPrepareOptions, + _token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + if (!workspaceFolder) { + return { + invocationMessage: "No workspace folder found. Please open a Robot Framework project.", + }; + } + + return { + invocationMessage: "Retrieving Robot Framework environment details", + }; + } +} diff --git a/vscode-client/extension/tsconfig.json b/vscode-client/extension/tsconfig.json index 17927e2e..bc77facc 100644 --- a/vscode-client/extension/tsconfig.json +++ b/vscode-client/extension/tsconfig.json @@ -14,7 +14,10 @@ "ES2022", ], "outDir": "../../out/extension", - "rootDir": "." + "rootDir": ".", + "jsx": "react", + "jsxFactory": "vscpp", + "jsxFragmentFactory": "vscppf" }, "exclude": [ "../../node_modules", From 7f46a6bb569e235e6f4c0b3f9bf6ce4421807822 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Sat, 31 May 2025 00:51:02 +0200 Subject: [PATCH 009/110] chore(intellj): fix pluginVerifier workflow --- intellij-client/build.gradle.kts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/intellij-client/build.gradle.kts b/intellij-client/build.gradle.kts index c1e6b4a1..d14233e0 100644 --- a/intellij-client/build.gradle.kts +++ b/intellij-client/build.gradle.kts @@ -121,16 +121,8 @@ intellijPlatform { failureLevel = listOf(INVALID_PLUGIN, COMPATIBILITY_PROBLEMS, MISSING_DEPENDENCIES) verificationReportsFormats = listOf(MARKDOWN, PLAIN) ides { - select { - types = listOf( - IntelliJPlatformType.PyCharmCommunity, - IntelliJPlatformType.PyCharmProfessional, - IntelliJPlatformType.IntellijIdeaCommunity, - IntelliJPlatformType.IntellijIdeaUltimate, - ) - } + recommended() } - } } From e5631f042e42810b35d8694649cb76819b7b5866 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Sat, 31 May 2025 22:29:35 +0200 Subject: [PATCH 010/110] feat(vscode): add language model tool to get the library and resource imports from a robot file --- package.json | 78 +++++++++-- .../robotframework/parts/keywords_treeview.py | 75 ++++++++-- vscode-client/extension/index.ts | 15 +- .../extension/keywordsTreeViewProvider.ts | 2 +- .../extension/languageclientsmanger.ts | 40 +++++- vscode-client/extension/lmTools.tsx | 128 ++++++++++++++++-- 6 files changed, 305 insertions(+), 33 deletions(-) diff --git a/package.json b/package.json index b10183c4..54ce36e7 100644 --- a/package.json +++ b/package.json @@ -1941,16 +1941,14 @@ ] } ], - "chatParticipants":[ - - ], + "chatParticipants": [], "languageModelTools": [ { - "name": "robot-get_library_doc", + "name": "robot-get_library_documentation", "displayName": "Get Library Documentation", - "toolReferenceName": "robotGetLibraryDoc", - "modelDescription": "Gets the library documentation for the given library name. This includes keywords, documentation, and other information about the library.", - "userDescription": "Gets documentation for the given library.", + "toolReferenceName": "robotGetLibraryDocumentation", + "modelDescription": "Retrieves comprehensive documentation for Robot Framework libraries. Returns the library's description, initialization parameters with their types and default values, complete list of available keywords with their signatures (including arguments, types, and return values). Use this tool when you need to understand what keywords are available in a library, how to initialize it, or get detailed parameter information. Do not use for getting documentation of specific keywords (use robot-get_keyword_documentation instead) or for analyzing test files. Limitations: Only works with libraries that are properly installed and importable in the current Python environment, may not work with dynamic libraries that change behavior based on runtime conditions, and requires the specified library to be accessible from the workspace's Robot Framework configuration.", + "userDescription": "Gets Documentation and keyword list for a Robot Framework library.", "canBeReferencedInPrompt": true, "tags": [ "robot", @@ -1977,11 +1975,75 @@ } } }, + { + "name": "robot-get_keyword_documentation", + "displayName": "Get Keyword Documentation", + "toolReferenceName": "robotGetKeywordDoc", + "modelDescription": "Retrieves detailed documentation for a specific Robot Framework keyword. Returns the keyword's complete signature with parameter names, types, default values, and detailed descriptions, along with return value information and usage examples. Use this tool when you need specific information about how to use a particular keyword, its parameters, or expected behavior. Do not use for getting a list of all keywords in a library (use robot-get_library_documentation instead) or for analyzing test file content. Limitations: Requires both the keyword name and library name to be specified accurately, only works with keywords from libraries that are properly installed and importable in the current Python environment, may not work with dynamic keywords that change behavior based on runtime conditions, and requires the specified library to be accessible from the workspace's Robot Framework configuration.", + "userDescription": "Gets detailed documentation for a specific Robot Framework keyword.", + "canBeReferencedInPrompt": true, + "tags": [ + "robot", + "robotframework", + "robotframework-keyword", + "robotcode" + ], + "icon": "$(robotcode-robot)", + "inputSchema": { + "type": "object", + "required": [ + "keywordName", + "libraryName" + ], + "properties": { + "keywordName": { + "type": "string", + "description": "The name of the keyword." + }, + "libraryName": { + "type": "string", + "description": "The name of the library containing the keyword." + }, + "resourcePath": { + "type": "string", + "description": "The path to the robot framework file or workspace." + } + } + } + }, + { + "name": "robot-get_document_imports", + "displayName": "Get Document Imports", + "toolReferenceName": "robotGetDocumentImports", + "modelDescription": "Retrieves a list of all imported libraries and resource files for a specific Robot Framework document. Returns the names and paths of all libraries imported in the specified Robot Framework file. Use this tool when you need to analyze the dependencies of a Robot Framework document or understand its library and resource usage. Limitations: Only works with Robot Framework files, may not detect dynamic imports or libraries loaded at runtime, and requires the specified file to be accessible from the workspace's Robot Framework configuration.", + "userDescription": "Gets a list of all imported libraries and resources for a specific Robot Framework document.", + "canBeReferencedInPrompt": true, + "tags": [ + "robot", + "robotframework", + "robotframework-library", + "robotframework-resource", + "robotcode" + ], + "icon": "$(robotcode-robot)", + "inputSchema": { + "type": "object", + "required": [ + "resourcePath" + ], + "properties": { + "resourcePath": { + "type": "string", + "description": "The path to a robot framework file." + } + } + } + }, { "name": "robot-get_environment_details", "displayName": "Get Robot Framework Environment Informations", "toolReferenceName": "robotGetEnvironmentInfo", - "modelDescription": "This tool will retrieve the details of the Robot Framework Environment for the specified file or workspace. This includes informations about the python interpreter, like the version and the executable path, and the versions of robot framework, RobotCode, robocop and robotidy if installed.", + "modelDescription": "Retrieves detailed environment information for Robot Framework workspaces or files. Returns comprehensive details about the Python interpreter (version, executable path), installed Robot Framework version, RobotCode extension version, and optional tool versions (robocop, robotidy) if available. Use this tool when you need to diagnose environment issues, verify installations, check version compatibility, or troubleshoot Robot Framework setup problems. Limitations: Only provides information about the currently configured Python environment for the workspace, may not detect tools installed in different Python environments, requires proper workspace configuration to access environment details, and information accuracy depends on the current RobotCode language server connection.", "userDescription": "Gets informations about the Robot Framework Environment.", "canBeReferencedInPrompt": true, "tags": [ diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py index cdf509f8..0e8be8f4 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/keywords_treeview.py @@ -17,6 +17,13 @@ @dataclass(repr=False) class GetDocumentImportsParams(CamelSnakeMixin): text_document: TextDocumentIdentifier + no_documentation: Optional[bool] = None + + +@dataclass(repr=False) +class GetDocumentKeywordsParams(CamelSnakeMixin): + text_document: TextDocumentIdentifier + no_documentation: Optional[bool] = None @dataclass(repr=False) @@ -25,6 +32,13 @@ class GetLibraryDocumentationParams(CamelSnakeMixin): library_name: str +@dataclass(repr=False) +class GetKeywordDocumentationParams(CamelSnakeMixin): + workspace_folder_uri: str + library_name: str + keyword_name: str + + @dataclass(repr=False) class Keyword(CamelSnakeMixin): name: str @@ -69,6 +83,7 @@ def __init__(self, parent: "RobotLanguageServerProtocol") -> None: def _get_document_imports( self, text_document: TextDocumentIdentifier, + no_documentation: Optional[bool] = None, *args: Any, **kwargs: Any, ) -> Optional[List[DocumentImport]]: @@ -87,16 +102,18 @@ def _get_document_imports( alias=v.alias, id=str(hash(v)), type="library", - documentation=v.library_doc.to_markdown(add_signature=False), + documentation=v.library_doc.to_markdown(add_signature=False) if not no_documentation else None, keywords=[ Keyword( l.name, str(hash(l)), l.parameter_signature(), - l.to_markdown(add_signature=False), + l.to_markdown(add_signature=False) if not no_documentation else None, ) for l in v.library_doc.keywords.values() - ], + ] + if not no_documentation + else None, ) ) for _k, v in namespace.get_resources().items(): @@ -106,21 +123,29 @@ def _get_document_imports( alias=None, id=str(hash(v)), type="resource", - documentation=v.library_doc.to_markdown(add_signature=False), + documentation=v.library_doc.to_markdown(add_signature=False) if not no_documentation else None, keywords=[ - Keyword(l.name, str(hash(l)), l.parameter_signature(), l.to_markdown(add_signature=False)) + Keyword( + l.name, + str(hash(l)), + l.parameter_signature(), + l.to_markdown(add_signature=False) if not no_documentation else None, + ) for l in v.library_doc.keywords.values() - ], + ] + if not no_documentation + else None, ) ) return result - @rpc_method(name="robot/keywordsview/getDocumentKeywords", param_type=GetDocumentImportsParams, threaded=True) + @rpc_method(name="robot/keywordsview/getDocumentKeywords", param_type=GetDocumentKeywordsParams, threaded=True) @_logger.call def _get_document_keywords( self, text_document: TextDocumentIdentifier, + no_documentation: Optional[bool] = None, *args: Any, **kwargs: Any, ) -> Optional[List[Keyword]]: @@ -131,7 +156,12 @@ def _get_document_keywords( namespace = self.parent.documents_cache.get_namespace(document) return [ - Keyword(l.name, str(hash(l)), l.parameter_signature(), l.to_markdown(add_signature=False)) + Keyword( + l.name, + str(hash(l)), + l.parameter_signature(), + l.to_markdown(add_signature=False) if not no_documentation else None, + ) for l in namespace.get_library_doc().keywords.values() ] @@ -220,3 +250,32 @@ def _get_library_documentation( for s in libdoc.inits.values() ], ) + + @rpc_method( + name="robot/keywordsview/getKeywordDocumentation", param_type=GetKeywordDocumentationParams, threaded=True + ) + @_logger.call + def _get_keyword_documentation( + self, + workspace_folder_uri: str, + library_name: str, + keyword_name: str, + *args: Any, + **kwargs: Any, + ) -> Optional[Keyword]: + imports_manager = self.parent.documents_cache.get_imports_manager_for_uri(Uri(workspace_folder_uri)) + + libdoc = imports_manager.get_libdoc_for_library_import(library_name, (), ".") + if libdoc.errors: + raise ValueError(f"Errors while loading library documentation: {libdoc.errors}") + + kw = libdoc.keywords.get(keyword_name, None) + if kw is None: + raise ValueError(f"Keyword '{keyword_name}' not found in library '{library_name}'.") + + return Keyword( + name=kw.name, + id=str(hash(kw)), + signature=kw.parameter_signature(), + documentation=kw.to_markdown(), + ) diff --git a/vscode-client/extension/index.ts b/vscode-client/extension/index.ts index b1df47e3..4dcc5174 100644 --- a/vscode-client/extension/index.ts +++ b/vscode-client/extension/index.ts @@ -7,7 +7,7 @@ import { KeywordsTreeViewProvider } from "./keywordsTreeViewProvider"; import { LanguageToolsManager } from "./languageToolsManager"; import { NotebookManager } from "./notebook"; import path from "path"; -import { GetEnvironmentDetails, GetLibDocTool } from "./lmTools"; +import { GetDocumentImportsTool, GetEnvironmentDetails, GetKeywordInfoTool, GetLibraryInfoTool } from "./lmTools"; class TerminalLink extends vscode.TerminalLink { constructor( @@ -154,7 +154,18 @@ export async function activateAsync(context: vscode.ExtensionContext): Promise { if (this._cancelationSource?.token.isCancellationRequested) { diff --git a/vscode-client/extension/languageclientsmanger.ts b/vscode-client/extension/languageclientsmanger.ts index f503f2c9..99611ecc 100644 --- a/vscode-client/extension/languageclientsmanger.ts +++ b/vscode-client/extension/languageclientsmanger.ts @@ -47,7 +47,7 @@ export interface LibraryDocumentation { name: string; documentation?: string; keywords?: Keyword[]; - initializers?: DocumentImport[]; + initializers?: Keyword[]; } export interface DocumentImport { @@ -892,10 +892,18 @@ export class LanguageClientsManager { } public async getDocumentImports( - document: vscode.TextDocument, + document_or_uri: vscode.TextDocument | vscode.Uri | string, + noDocumentation?: boolean | undefined, token?: vscode.CancellationToken | undefined, ): Promise { - const client = await this.getLanguageClientForResource(document.uri); + const uri = + document_or_uri instanceof vscode.Uri + ? document_or_uri + : typeof document_or_uri === "string" + ? vscode.Uri.parse(document_or_uri) + : document_or_uri.uri; + + const client = await this.getLanguageClientForResource(uri); if (!client) return []; @@ -903,7 +911,8 @@ export class LanguageClientsManager { (await client.sendRequest( "robot/keywordsview/getDocumentImports", { - textDocument: { uri: document.uri.toString() }, + textDocument: { uri: uri.toString() }, + noDocumentation: noDocumentation, }, token ?? new vscode.CancellationTokenSource().token, )) ?? [] @@ -931,6 +940,29 @@ export class LanguageClientsManager { ); } + public async getKeywordDocumentation( + workspace_folder: vscode.WorkspaceFolder, + libraryName: string, + keywordName: string, + token?: vscode.CancellationToken | undefined, + ): Promise { + const client = await this.getLanguageClientForResource(workspace_folder.uri); + + if (!client) return undefined; + + return ( + (await client.sendRequest( + "robot/keywordsview/getKeywordDocumentation", + { + workspaceFolderUri: workspace_folder.uri.toString(), + libraryName: libraryName, + keywordName: keywordName, + }, + token ?? new vscode.CancellationTokenSource().token, + )) ?? undefined + ); + } + public async getDocumentKeywords( document: vscode.TextDocument, token?: vscode.CancellationToken | undefined, diff --git a/vscode-client/extension/lmTools.tsx b/vscode-client/extension/lmTools.tsx index 75382be2..69a8936d 100644 --- a/vscode-client/extension/lmTools.tsx +++ b/vscode-client/extension/lmTools.tsx @@ -14,12 +14,12 @@ function resolveWorkspaceFolder(filepath?: string): vscode.WorkspaceFolder | und } } -interface GetLibDocToolParamters { +interface GetLibraryInfoToolParamters { libraryName: string; resourcePath?: string; } -export class GetLibDocTool implements vscode.LanguageModelTool { +export class GetLibraryInfoTool implements vscode.LanguageModelTool { constructor( public readonly extensionContext: vscode.ExtensionContext, public readonly languageClientsManager: LanguageClientsManager, @@ -27,7 +27,7 @@ export class GetLibDocTool implements vscode.LanguageModelTool, + options: vscode.LanguageModelToolInvocationOptions, token: vscode.CancellationToken, ): Promise { const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); @@ -52,19 +52,22 @@ export class GetLibDocTool implements vscode.LanguageModelTool new vscode.LanguageModelTextPart(`${kw.documentation || "No documentation available."}`), - ) + ? libdoc.keywords.map((kw) => `- ${kw.name}${kw.signature}`) + : [new vscode.LanguageModelTextPart("No keywords available.")]; + + const initializers = libdoc.initializers + ? libdoc.initializers.map((kw) => `- ${kw.name}${kw.signature}`) : [new vscode.LanguageModelTextPart("No keywords available.")]; return new vscode.LanguageModelToolResult([ new vscode.LanguageModelTextPart(libdoc.documentation ?? "No documentation available."), - ...keywords, + new vscode.LanguageModelTextPart(`## Initializers:\n${initializers.join("\n")}`), + new vscode.LanguageModelTextPart(`## Keywords:\n${keywords.join("\n")}`), ]); } async prepareInvocation?( - options: vscode.LanguageModelToolInvocationPrepareOptions, + options: vscode.LanguageModelToolInvocationPrepareOptions, _token: vscode.CancellationToken, ): Promise { const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); @@ -80,6 +83,111 @@ export class GetLibDocTool implements vscode.LanguageModelTool { + constructor( + public readonly extensionContext: vscode.ExtensionContext, + public readonly languageClientsManager: LanguageClientsManager, + public readonly outputChannel: vscode.OutputChannel, + ) {} + + async invoke( + options: vscode.LanguageModelToolInvocationOptions, + token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + + if (!workspaceFolder) { + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart("No workspace folder found. Please open a Robot Framework project."), + ]); + } + + const keyword = await this.languageClientsManager.getKeywordDocumentation( + workspaceFolder, + options.input.libraryName, + options.input.keywordName, + token, + ); + if (!keyword) { + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart( + "Failed to retrieve Keyword documentation. Ensure the Robot Framework extension is properly configured and the library is installed.", + ), + ]); + } + + return new vscode.LanguageModelToolResult([ + new vscode.LanguageModelTextPart( + `# Keyword: ${keyword.name}${keyword.signature}\n\n${keyword.documentation ?? "No documentation available."}`, + ), + ]); + } + + async prepareInvocation?( + options: vscode.LanguageModelToolInvocationPrepareOptions, + _token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + if (!workspaceFolder) { + return { + invocationMessage: "No workspace folder found. Please open a Robot Framework project.", + }; + } + + return { + invocationMessage: "Retrieving Robot Framework Keyword details", + }; + } +} + +interface GetDocumentImportsToolParamters { + resourcePath: string; +} + +export class GetDocumentImportsTool implements vscode.LanguageModelTool { + constructor( + public readonly extensionContext: vscode.ExtensionContext, + public readonly languageClientsManager: LanguageClientsManager, + public readonly outputChannel: vscode.OutputChannel, + ) {} + + async invoke( + options: vscode.LanguageModelToolInvocationOptions, + token: vscode.CancellationToken, + ): Promise { + vscode.workspace.textDocuments.forEach((doc) => { + if (doc.uri.toString() === options.input.resourcePath) { + vscode.window.showTextDocument(doc, { preview: true }); + } + }); + const keyword = await this.languageClientsManager.getDocumentImports(options.input.resourcePath, true, token); + + return new vscode.LanguageModelToolResult([new vscode.LanguageModelTextPart(JSON.stringify(keyword))]); + } + + async prepareInvocation?( + options: vscode.LanguageModelToolInvocationPrepareOptions, + _token: vscode.CancellationToken, + ): Promise { + const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); + if (!workspaceFolder) { + return { + invocationMessage: "No workspace folder found. Please open a Robot Framework project.", + }; + } + + return { + invocationMessage: "Retrieving Robot Framework Document Imports", + }; + } +} + interface GetEnvironmentDetailsParamters { resourcePath?: string; } @@ -92,7 +200,7 @@ export class GetEnvironmentDetails implements vscode.LanguageModelTool, + options: vscode.LanguageModelToolInvocationOptions, token: vscode.CancellationToken, ): Promise { const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); @@ -126,7 +234,7 @@ export class GetEnvironmentDetails implements vscode.LanguageModelTool, + options: vscode.LanguageModelToolInvocationPrepareOptions, _token: vscode.CancellationToken, ): Promise { const workspaceFolder = resolveWorkspaceFolder(options.input.resourcePath); From e6ffef7ded23ccab2bf3359891e5698f65a99ec4 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Sat, 31 May 2025 23:49:53 +0200 Subject: [PATCH 011/110] feat: basic support for Robot Framework 7.3 --- hatch.toml | 50 +- .../robotframework/parts/semantic_tokens.py | 4 +- .../robot/diagnostics/keyword_finder.py | 37 +- .../robot/diagnostics/library_doc.py | 12 +- ...tation.robot-001-016-built-in_library].out | 18 + ...tation.robot-001-021-built-in_library].out | 18 + ...tation.robot-001-026-built-in_library].out | 18 + ...umentation.robot-003-016-user_library].out | 18 + ...umentation.robot-003-021-user_library].out | 18 + ...umentation.robot-003-026-user_library].out | 18 + ...16-user_library_by_path_with_variable].out | 18 + ...31-user_library_by_path_with_variable].out | 18 + ...46-user_library_by_path_with_variable].out | 18 + ..._documentation.robot-008-016-resource].out | 18 + ..._documentation.robot-008-027-resource].out | 18 + ..._documentation.robot-008-037-resource].out | 18 + ...10-016-resource_by_path_with_variable].out | 18 + ...10-038-resource_by_path_with_variable].out | 18 + ...10-060-resource_by_path_with_variable].out | 18 + ...t-012-016-user_library_with_arguments].out | 18 + ...t-012-020-user_library_with_arguments].out | 18 + ...t-012-023-user_library_with_arguments].out | 18 + ...r_library_with_arguments_and_variable].out | 18 + ...r_library_with_arguments_and_variable].out | 18 + ...r_library_with_arguments_and_variable].out | 18 + ..._from_built-in_library_wit__d7d16e6184.out | 18 + ..._from_built-in_library_wit__cd42b3cd81.out | 18 + ..._from_built-in_library_wit__028749342f.out | 18 + ...l_from_built-in_library_in_Test_Setup].out | 18 + ...l_from_built-in_library_in_Test_Setup].out | 18 + ...l_from_built-in_library_in_Test_Setup].out | 18 + ...d_call_from_built-in_library_in_setup].out | 18 + ...d_call_from_built-in_library_in_setup].out | 18 + ...d_call_from_built-in_library_in_setup].out | 18 + ...all_from_built-in_library_in_teardown].out | 18 + ...all_from_built-in_library_in_teardown].out | 18 + ...all_from_built-in_library_in_teardown].out | 18 + ...032-004-keyword_from_built-in_library].out | 18 + ...032-005-keyword_from_built-in_library].out | 18 + ...032-006-keyword_from_built-in_library].out | 18 + ..._from_built-in_library_with_namespace].out | 18 + ..._from_built-in_library_with_namespace].out | 18 + ..._from_built-in_library_with_namespace].out | 18 + ...all_from_built-in_library_in_template].out | 18 + ...all_from_built-in_library_in_template].out | 18 + ...all_from_built-in_library_in_template].out | 18 + ..._from_built-in_library_wit__d984cab273.out | 18 + ..._from_built-in_library_wit__fb1f1a56e9.out | 18 + ..._from_built-in_library_wit__14f1104533.out | 18 + ..._from_user_library_with_na__efa1e89fe7.out | 18 + ..._from_user_library_with_na__8a545faa50.out | 18 + ..._from_user_library_with_na__08fdc650a6.out | 18 + ..._from_user_library_with_na__2da3a7e0a5.out | 19 + ..._from_user_library_with_na__a1c5878f20.out | 19 + ..._from_user_library_with_na__c2ef0179a4.out | 19 + ...call_with_embedded_arguments_in_setup].out | 18 + ...call_with_embedded_arguments_in_setup].out | 18 + ...call_with_embedded_arguments_in_setup].out | 18 + ...l_with_embedded_arguments_in_teardown].out | 18 + ...l_with_embedded_arguments_in_teardown].out | 18 + ...l_with_embedded_arguments_in_teardown].out | 18 + ...rd_call_normal_arguments_in_test_case].out | 18 + ...rd_call_normal_arguments_in_test_case].out | 18 + ...rd_call_normal_arguments_in_test_case].out | 18 + ..._call_embedded_arguments_in_test_case].out | 18 + ..._call_embedded_arguments_in_test_case].out | 18 + ..._call_embedded_arguments_in_test_case].out | 18 + ...-keyword_call_with_embedded_arguments].out | 18 + ...-keyword_call_with_embedded_arguments].out | 18 + ...-keyword_call_with_embedded_arguments].out | 18 + ..._with_embedded_arguments_and_variable].out | 18 + ..._with_embedded_arguments_and_variable].out | 18 + ..._with_embedded_arguments_and_variable].out | 18 + ...robot-079-004-error_multiple_keywords].out | 5 + ...robot-079-014-error_multiple_keywords].out | 5 + ...robot-079-024-error_multiple_keywords].out | 5 + ...1-004-error_multiple_keywords_ignored].out | 5 + ...1-014-error_multiple_keywords_ignored].out | 5 + ...1-024-error_multiple_keywords_ignored].out | 5 + ....robot-086-004-a_keyword_with_emoji_1].out | 18 + ....robot-086-006-a_keyword_with_emoji_1].out | 18 + ....robot-086-007-a_keyword_with_emoji_1].out | 5 + ....robot-088-004-a_keyword_with_emoji_2].out | 18 + ....robot-088-006-a_keyword_with_emoji_2].out | 18 + ....robot-088-007-a_keyword_with_emoji_2].out | 5 + ...rd_definition_with_embedded_arguments].out | 18 + ...rd_definition_with_embedded_arguments].out | 18 + ...rd_definition_with_embedded_arguments].out | 18 + ...tion.robot-095-001-keyword_definition].out | 18 + ...tion.robot-095-006-keyword_definition].out | 18 + ...tion.robot-095-011-keyword_definition].out | 18 + ...04-keyword_call_in_keyword_definition].out | 18 + ...05-keyword_call_in_keyword_definition].out | 18 + ...06-keyword_call_in_keyword_definition].out | 18 + ...nition_with_embedded_argum__b7a9e9c57a.out | 18 + ...nition_with_embedded_argum__ade1039d68.out | 18 + ...nition_with_embedded_argum__f1aa26fade.out | 18 + ...2-018-Variable_in_library_import_path].out | 32 + ...2-021-Variable_in_library_import_path].out | 32 + ...2-023-Variable_in_library_import_path].out | 32 + ...018-Variable_in_variables_import_path].out | 32 + ...021-Variable_in_variables_import_path].out | 32 + ...023-Variable_in_variables_import_path].out | 32 + ...-018-Variable_in_resource_import_path].out | 32 + ...-021-Variable_in_resource_import_path].out | 32 + ...-023-Variable_in_resource_import_path].out | 32 + ...029-namespace_reference_with_resource].out | 23 + ...040-namespace_reference_with_resource].out | 23 + ...051-namespace_reference_with_resource].out | 23 + ...ot-010-036-Variable_in_library_params].out | 14 + ...ot-010-041-Variable_in_library_params].out | 32 + ...ot-010-045-Variable_in_library_params].out | 32 + ...0-063-namespace_references_with_alias].out | 32 + ...0-066-namespace_references_with_alias].out | 32 + ...0-069-namespace_references_with_alias].out | 32 + ...e_fixture_keyword_call_with_namespace].out | 77 + ...e_fixture_keyword_call_with_namespace].out | 77 + ...e_fixture_keyword_call_with_namespace].out | 77 + ...t_fixture_keyword_call_with_namespace].out | 77 + ...t_fixture_keyword_call_with_namespace].out | 77 + ...t_fixture_keyword_call_with_namespace].out | 77 + ...ghlight.robot-020-002-simple_variable].out | 113 + ...ghlight.robot-020-004-simple_variable].out | 113 + ...ghlight.robot-020-006-simple_variable].out | 113 + ...ight.robot-022-002-another_simple_var].out | 32 + ...ight.robot-022-005-another_simple_var].out | 32 + ...ight.robot-022-007-another_simple_var].out | 32 + ...ht.robot-030-015-fixture_keyword_call].out | 77 + ...ht.robot-030-022-fixture_keyword_call].out | 77 + ...ht.robot-030-028-fixture_keyword_call].out | 77 + ...6-fixture_keyword_call_with_namespace].out | 77 + ...3-fixture_keyword_call_with_namespace].out | 77 + ...9-fixture_keyword_call_with_namespace].out | 77 + ...ght.robot-034-004-simple_keyword_call].out | 221 + ...ght.robot-034-005-simple_keyword_call].out | 221 + ...ght.robot-034-006-simple_keyword_call].out | 221 + ...ght.robot-036-004-multiple_references].out | 77 + ...ght.robot-036-011-multiple_references].out | 77 + ...ght.robot-036-017-multiple_references].out | 77 + ...12-multiple_references_with_namespace].out | 77 + ...19-multiple_references_with_namespace].out | 77 + ...25-multiple_references_with_namespace].out | 77 + ...ight.robot-038-035-multiple_variables].out | 113 + ...ight.robot-038-037-multiple_variables].out | 113 + ...ight.robot-038-039-multiple_variables].out | 113 + ...ght.robot-041-013-a_var_from_resource].out | 14 + ...ght.robot-041-022-a_var_from_resource].out | 14 + ...ght.robot-041-030-a_var_from_resource].out | 14 + ...hlight.robot-045-018-template_keyword].out | 77 + ...hlight.robot-045-025-template_keyword].out | 77 + ...hlight.robot-045-031-template_keyword].out | 77 + ...1-026-template_keyword_with_namespace].out | 77 + ...1-033-template_keyword_with_namespace].out | 77 + ...1-039-template_keyword_with_namespace].out | 77 + ...ght.robot-057-006-Keyword_assignement].out | 41 + ...ght.robot-057-009-Keyword_assignement].out | 41 + ...ght.robot-057-011-Keyword_assignement].out | 41 + ...6-Keyword_assignment_with_equals_sign].out | 41 + ...9-Keyword_assignment_with_equals_sign].out | 41 + ...1-Keyword_assignment_with_equals_sign].out | 41 + ...60-018-namespace_reference_with_alias].out | 32 + ...60-021-namespace_reference_with_alias].out | 32 + ...60-024-namespace_reference_with_alias].out | 32 + ...004-namespace_reference_with_resource].out | 23 + ...010-namespace_reference_with_resource].out | 23 + ...016-namespace_reference_with_resource].out | 23 + ....robot-070-041-short_keyword_argument].out | 14 + ...-070-048-keyword_argument_with_spaces].out | 14 + ...-070-053-keyword_argument_with_spaces].out | 14 + ...-070-058-keyword_argument_with_spaces].out | 14 + ...obot-070-066-another_keyword_argument].out | 14 + ...obot-070-072-another_keyword_argument].out | 14 + ...obot-070-077-another_keyword_argument].out | 14 + ...004-namespace_reference_from_resource].out | 14 + ...009-namespace_reference_from_resource].out | 14 + ...014-namespace_reference_from_resource].out | 14 + ....robot-080-004-a_keyword_with_emoji_1].out | 23 + ....robot-080-005-a_keyword_with_emoji_1].out | 23 + ....robot-082-004-a_keyword_with_emoji_2].out | 23 + ....robot-082-005-a_keyword_with_emoji_2].out | 23 + ...ighlight.robot-086-010-variable_in_if].out | 68 + ...ght.robot-089-017-variable_in_else_if].out | 50 + ...bot-094-009-variable_in_if_expression].out | 68 + ...97-016-variable_in_else_if_expression].out | 50 + ...-010-variable_in_inline_if_expression].out | 68 + ...variable_in_inline_else_if_expression].out | 50 + ...-009-variable_in_inline_if_expression].out | 68 + ...variable_in_inline_else_if_expression].out | 50 + ...hlight.robot-113-021-another_argument].out | 23 + ...hlight.robot-113-023-another_argument].out | 23 + ...hlight.robot-113-025-another_argument].out | 23 + ...ghlight.robot-113-030-a_default_value].out | 113 + ...ghlight.robot-113-032-a_default_value].out | 113 + ...ghlight.robot-113-034-a_default_value].out | 113 + ...ighlight.robot-116-013-argument_usage].out | 14 + ...ighlight.robot-116-014-argument_usage].out | 14 + ...ighlight.robot-118-013-argument_usage].out | 23 + ...ighlight.robot-118-015-argument_usage].out | 23 + ...ighlight.robot-118-017-argument_usage].out | 23 + ...t_highlight.robot-122-021-an_argument].out | 23 + ...t_highlight.robot-122-022-an_argument].out | 23 + ...hlight.robot-122-030-another_argument].out | 23 + ...hlight.robot-122-032-another_argument].out | 23 + ...hlight.robot-122-034-another_argument].out | 23 + ...ghlight.robot-122-039-a_default_value].out | 113 + ...ghlight.robot-122-041-a_default_value].out | 113 + ...ghlight.robot-122-043-a_default_value].out | 113 + ...ighlight.robot-126-013-argument_usage].out | 23 + ...ighlight.robot-126-014-argument_usage].out | 23 + ...ighlight.robot-128-013-argument_usage].out | 23 + ...ighlight.robot-128-015-argument_usage].out | 23 + ...ighlight.robot-128-017-argument_usage].out | 23 + ...t_highlight.robot-132-021-an_argument].out | 59 + ...hlight.robot-132-029-another_argument].out | 50 + ...ot-132-034-argument_usage_in_argument].out | 59 + ...ighlight.robot-136-013-argument_usage].out | 59 + ...ighlight.robot-138-013-argument_usage].out | 50 + ...ighlight.robot-140-013-argument_usage].out | 59 + ...ment_usage_in_keyword_with_expression].out | 59 + ...hlight.robot-149-006-Embedded_keyword].out | 23 + ...hlight.robot-149-009-Embedded_keyword].out | 23 + ...hlight.robot-149-011-Embedded_keyword].out | 23 + ...robot-151-019-embedded_argument_usage].out | 23 + ...robot-151-022-embedded_argument_usage].out | 23 + ...robot-151-024-embedded_argument_usage].out | 23 + ...robot-151-038-embedded_argument_usage].out | 23 + ...robot-151-040-embedded_argument_usage].out | 23 + ...robot-151-042-embedded_argument_usage].out | 23 + ...ght.robot-156-051-a_global_var_in_doc].out | 113 + ...ght.robot-156-053-a_global_var_in_doc].out | 113 + ...ght.robot-156-055-a_global_var_in_doc].out | 113 + ...ight.robot-156-064-an_argument_in_doc].out | 14 + ...ight.robot-156-067-an_argument_in_doc].out | 14 + ...ight.robot-156-069-an_argument_in_doc].out | 14 + ....robot-159-019-an_argument_in_timeout].out | 32 + ...ght.robot-161-016-an_argument_in_tags].out | 14 + ...ght.robot-161-019-an_argument_in_tags].out | 14 + ...ght.robot-161-021-an_argument_in_tags].out | 14 + ...ght.robot-161-028-an_argument_in_tags].out | 113 + ...ght.robot-161-030-an_argument_in_tags].out | 113 + ...ght.robot-161-032-an_argument_in_tags].out | 113 + ...ght.robot-170-051-a_global_var_in_doc].out | 113 + ...ght.robot-170-053-a_global_var_in_doc].out | 113 + ...ght.robot-170-055-a_global_var_in_doc].out | 113 + ...ight.robot-170-064-an_argument_in_doc].out | 14 + ...ight.robot-170-067-an_argument_in_doc].out | 14 + ...ight.robot-170-069-an_argument_in_doc].out | 14 + ....robot-173-019-an_argument_in_timeout].out | 32 + ...ght.robot-175-016-an_argument_in_tags].out | 14 + ...ght.robot-175-019-an_argument_in_tags].out | 14 + ...ght.robot-175-021-an_argument_in_tags].out | 14 + ...ght.robot-175-028-an_argument_in_tags].out | 113 + ...ght.robot-175-030-an_argument_in_tags].out | 113 + ...ght.robot-175-032-an_argument_in_tags].out | 113 + ...ymbols.robot-000-001-settings_section].out | 25 + ...ymbols.robot-000-008-settings_section].out | 25 + ...ymbols.robot-000-015-settings_section].out | 25 + ...mbols.robot-004-001-variables_section].out | 25 + ...mbols.robot-004-008-variables_section].out | 25 + ...mbols.robot-004-015-variables_section].out | 25 + ...006-001-variable_in_variables_section].out | 25 + ...006-004-variable_in_variables_section].out | 25 + ...006-007-variable_in_variables_section].out | 25 + ...test[symbols.robot-009-001-test_cases].out | 25 + ...test[symbols.robot-009-009-test_cases].out | 25 + ...test[symbols.robot-009-017-test_cases].out | 25 + ...s.test[symbols.robot-011-001-testcase].out | 25 + ...s.test[symbols.robot-011-003-testcase].out | 25 + ...s.test[symbols.robot-011-004-testcase].out | 25 + ...bols.robot-013-006-keyword_assignment].out | 25 + ...bols.robot-013-010-keyword_assignment].out | 25 + ...bols.robot-013-014-keyword_assignment].out | 25 + ...6-keyword_assignment_allready_defined].out | 25 + ...0-keyword_assignment_allready_defined].out | 25 + ...4-keyword_assignment_allready_defined].out | 25 + ...obot-016-022-multiple_keyword_assigns].out | 25 + ...obot-016-027-multiple_keyword_assigns].out | 25 + ...obot-016-031-multiple_keyword_assigns].out | 25 + ...[symbols.robot-019-011-local_var_RF_7].out | 25 + ...[symbols.robot-019-015-local_var_RF_7].out | 25 + ...[symbols.robot-019-019-local_var_RF_7].out | 25 + ...s.test[symbols.robot-021-011-loop_var].out | 25 + ...s.test[symbols.robot-021-015-loop_var].out | 25 + ...s.test[symbols.robot-021-018-loop_var].out | 25 + ...bols.robot-028-031-exception_variable].out | 25 + ...bols.robot-028-032-exception_variable].out | 25 + ...bols.robot-028-033-exception_variable].out | 25 + ...ymbols.robot-034-001-comments_section].out | 25 + ...ymbols.robot-034-008-comments_section].out | 25 + ...ymbols.robot-034-015-comments_section].out | 25 + ...ymbols.robot-037-001-keywords_section].out | 25 + ...ymbols.robot-037-008-keywords_section].out | 25 + ...ymbols.robot-037-015-keywords_section].out | 25 + ...ls.test[symbols.robot-039-001-keyword].out | 25 + ...ls.test[symbols.robot-039-005-keyword].out | 25 + ...ls.test[symbols.robot-039-009-keyword].out | 25 + ...[symbols.robot-041-021-first_argument].out | 25 + ...[symbols.robot-041-023-first_argument].out | 25 + ...[symbols.robot-041-025-first_argument].out | 25 + ...symbols.robot-041-033-second_argument].out | 25 + ...symbols.robot-041-036-second_argument].out | 25 + ...symbols.robot-041-038-second_argument].out | 25 + ...obot-044-001-another_keywords_section].out | 25 + ...obot-044-008-another_keywords_section].out | 25 + ...obot-044-015-another_keywords_section].out | 25 + ...symbols.robot-046-001-another_keyword].out | 25 + ...symbols.robot-046-008-another_keyword].out | 25 + ...symbols.robot-046-014-another_keyword].out | 25 + ...ymbols.robot-052-001-unreachable_test].out | 25 + ...ymbols.robot-052-002-unreachable_test].out | 25 + ...ymbols.robot-052-003-unreachable_test].out | 25 + ...ols.robot-057-001-unreachable_keyword].out | 25 + ...ols.robot-057-002-unreachable_keyword].out | 25 + ...ols.robot-057-003-unreachable_keyword].out | 25 + ...11-variable_with_space_and_equal_sign].out | 25 + ...13-variable_with_space_and_equal_sign].out | 25 + ...15-variable_with_space_and_equal_sign].out | 25 + ...11-variable_with_space_and_equal_sign].out | 25 + ...13-variable_with_space_and_equal_sign].out | 25 + ...15-variable_with_space_and_equal_sign].out | 25 + ...06-variable_with_space_and_equal_sign].out | 25 + ...08-variable_with_space_and_equal_sign].out | 25 + ...10-variable_with_space_and_equal_sign].out | 25 + ...ingrange.robot-000-001-Settings_start].out | 12 + ...ldingrange.robot-005-001-Settings_end].out | 12 + ...grange.robot-005-001-Test_Cases_start].out | 12 + ...ingrange.robot-008-001-Testcase_start].out | 12 + ...-foldingrange.robot-012-001-For_start].out | 12 + ...e-foldingrange.robot-014-001-If_start].out | 12 + ...e-foldingrange.robot-017-001-If_start].out | 12 + ...e-foldingrange.robot-020-001-If_start].out | 12 + ...lse-foldingrange.robot-023-001-If_end].out | 12 + ...se-foldingrange.robot-028-001-For_end].out | 12 + ...ldingrange.robot-031-001-Testcase_end].out | 12 + ...ingrange.robot-031-001-Testcase_start].out | 12 + ...ingrange.robot-036-001-Test_Cases_end].out | 19 + ...ldingrange.robot-036-001-Testcase_end].out | 19 + ...dingrange.robot-039-001-Keyword_start].out | 12 + ...dingrange.robot-043-001-Comment_start].out | 12 + ...oldingrange.robot-043-001-Keyword_end].out | 19 + ...oldingrange.robot-050-001-Comment_end].out | 12 + ...ngrange.robot-054-001-simple_if_start].out | 12 + ...dingrange.robot-057-001-simple_if_end].out | 12 + ...grange.robot-060-001-complex_if_start].out | 12 + ...e.robot-063-001-complex_else_if_start].out | 12 + ...-071-001-complex_second_else_if_start].out | 12 + ...foldingrange.robot-074-001-else_start].out | 12 + ...e-foldingrange.robot-077-001-else_end].out | 12 + ...oldingrange.robot-082-001-while_start].out | 12 + ...-foldingrange.robot-086-001-while_end].out | 5 + ...-foldingrange.robot-093-001-try_start].out | 12 + ...ldingrange.robot-096-001-except_start].out | 12 + ...se-foldingrange.robot-099-001-try_end].out | 12 + ...-foldingrange.robot-102-001-try_start].out | 12 + ...dingrange.robot-105-001-finally_start].out | 12 + ...se-foldingrange.robot-108-001-try_end].out | 12 + ...-foldingrange.robot-111-001-try_start].out | 12 + ...ldingrange.robot-114-001-except_start].out | 12 + ...ldingrange.robot-117-001-except_start].out | 12 + ...dingrange.robot-120-001-finally_start].out | 12 + ...se-foldingrange.robot-123-001-try_end].out | 12 + ...ingrange.robot-000-001-Settings_start].out | 12 + ...ldingrange.robot-005-001-Settings_end].out | 12 + ...grange.robot-005-001-Test_Cases_start].out | 12 + ...ingrange.robot-008-001-Testcase_start].out | 12 + ...-foldingrange.robot-012-001-For_start].out | 12 + ...e-foldingrange.robot-014-001-If_start].out | 12 + ...e-foldingrange.robot-017-001-If_start].out | 12 + ...e-foldingrange.robot-020-001-If_start].out | 12 + ...rue-foldingrange.robot-023-001-If_end].out | 12 + ...ue-foldingrange.robot-028-001-For_end].out | 12 + ...ldingrange.robot-031-001-Testcase_end].out | 12 + ...ingrange.robot-031-001-Testcase_start].out | 12 + ...ingrange.robot-036-001-Test_Cases_end].out | 19 + ...ldingrange.robot-036-001-Testcase_end].out | 19 + ...dingrange.robot-039-001-Keyword_start].out | 12 + ...dingrange.robot-043-001-Comment_start].out | 12 + ...oldingrange.robot-043-001-Keyword_end].out | 19 + ...oldingrange.robot-050-001-Comment_end].out | 12 + ...ngrange.robot-054-001-simple_if_start].out | 12 + ...dingrange.robot-057-001-simple_if_end].out | 12 + ...grange.robot-060-001-complex_if_start].out | 12 + ...e.robot-063-001-complex_else_if_start].out | 12 + ...-071-001-complex_second_else_if_start].out | 12 + ...foldingrange.robot-074-001-else_start].out | 12 + ...e-foldingrange.robot-077-001-else_end].out | 12 + ...oldingrange.robot-082-001-while_start].out | 12 + ...-foldingrange.robot-086-001-while_end].out | 5 + ...-foldingrange.robot-093-001-try_start].out | 12 + ...ldingrange.robot-096-001-except_start].out | 12 + ...ue-foldingrange.robot-099-001-try_end].out | 12 + ...-foldingrange.robot-102-001-try_start].out | 12 + ...dingrange.robot-105-001-finally_start].out | 12 + ...ue-foldingrange.robot-108-001-try_end].out | 12 + ...-foldingrange.robot-111-001-try_start].out | 12 + ...ldingrange.robot-114-001-except_start].out | 12 + ...ldingrange.robot-117-001-except_start].out | 12 + ...dingrange.robot-120-001-finally_start].out | 12 + ...ue-foldingrange.robot-123-001-try_end].out | 12 + ...finition[goto.robot-001-007-Separator].out | 5 + ...finition[goto.robot-001-012-Separator].out | 5 + ...finition[goto.robot-001-017-Separator].out | 5 + ...to.robot-001-018-Robot_Library_Import].out | 28 + ...to.robot-001-023-Robot_Library_Import].out | 28 + ...to.robot-001-028-Robot_Library_Import].out | 28 + ....robot-004-018-library_import_by_path].out | 28 + ...o.robot-004-020-var_in_library_import].out | 28 + ...o.robot-004-023-var_in_library_import].out | 28 + ...o.robot-004-025-var_in_library_import].out | 28 + ....robot-004-033-library_import_by_path].out | 28 + ....robot-004-048-library_import_by_path].out | 28 + ...n[goto.robot-007-018-Variables_Import].out | 28 + ...robot-007-020-var_in_variables_import].out | 28 + ...robot-007-023-var_in_variables_import].out | 28 + ...robot-007-025-var_in_variables_import].out | 28 + ...n[goto.robot-007-033-Variables_Import].out | 28 + ...n[goto.robot-007-048-Variables_Import].out | 28 + ...0-018-built_in_var_in_Resource_Import].out | 28 + ....robot-010-020-var_in_resource_import].out | 28 + ....robot-010-023-var_in_resource_import].out | 28 + ....robot-010-025-var_in_resource_import].out | 28 + ...0-040-built_in_var_in_Resource_Import].out | 28 + ...0-062-built_in_var_in_Resource_Import].out | 28 + ...bot-014-020-var_in_Libary_import_path].out | 28 + ...bot-014-021-var_in_Libary_import_path].out | 28 + ...bot-014-022-var_in_Libary_import_path].out | 28 + ...bot-014-057-var_in_library_parameters].out | 28 + ...bot-014-060-var_in_library_parameters].out | 28 + ...bot-014-063-var_in_library_parameters].out | 28 + ...tion[goto.robot-014-082-library_alias].out | 28 + ...tion[goto.robot-014-085-library_alias].out | 28 + ...tion[goto.robot-014-088-library_alias].out | 28 + ...on[goto.robot-023-002-Var_declaration].out | 28 + ...on[goto.robot-023-005-Var_declaration].out | 28 + ...on[goto.robot-023-008-Var_declaration].out | 28 + ...on[goto.robot-025-002-Var_declaration].out | 28 + ...on[goto.robot-025-003-Var_declaration].out | 28 + ...on[goto.robot-025-004-Var_declaration].out | 28 + ...to.robot-027-002-List_Var_declaration].out | 28 + ...to.robot-027-006-List_Var_declaration].out | 28 + ...to.robot-027-009-List_Var_declaration].out | 28 + ...to.robot-029-002-Dict_Var_declaration].out | 28 + ...to.robot-029-006-Dict_Var_declaration].out | 28 + ...to.robot-029-009-Dict_Var_declaration].out | 28 + ...finition[goto.robot-032-021-var_usage].out | 28 + ...finition[goto.robot-032-023-var_usage].out | 28 + ...finition[goto.robot-032-025-var_usage].out | 28 + ...finition[goto.robot-032-030-var_usage].out | 28 + ...finition[goto.robot-032-034-var_usage].out | 28 + ...finition[goto.robot-032-037-var_usage].out | 28 + ...finition[goto.robot-032-042-var_usage].out | 28 + ...finition[goto.robot-032-045-var_usage].out | 28 + ...finition[goto.robot-032-048-var_usage].out | 28 + ...on[goto.robot-043-004-BuiltIn_Keyword].out | 28 + ...on[goto.robot-043-005-BuiltIn_Keyword].out | 28 + ...on[goto.robot-043-006-BuiltIn_Keyword].out | 28 + ...efinition[goto.robot-043-019-Variable].out | 28 + ...efinition[goto.robot-043-021-Variable].out | 28 + ...efinition[goto.robot-043-023-Variable].out | 28 + ...efinition[goto.robot-047-013-List_Var].out | 28 + ...efinition[goto.robot-047-017-List_Var].out | 28 + ...efinition[goto.robot-047-020-List_Var].out | 28 + ....robot-049-013-List_Var_as_normal_var].out | 28 + ....robot-049-017-List_Var_as_normal_var].out | 28 + ....robot-049-020-List_Var_as_normal_var].out | 28 + ...efinition[goto.robot-052-013-Dict_Var].out | 28 + ...efinition[goto.robot-052-017-Dict_Var].out | 28 + ...efinition[goto.robot-052-020-Dict_Var].out | 28 + ....robot-054-013-Dict_Var_as_normal_var].out | 28 + ....robot-054-017-Dict_Var_as_normal_var].out | 28 + ....robot-054-020-Dict_Var_as_normal_var].out | 28 + ...-059-004-Robot_Namespace_from_Library].out | 28 + ...-059-009-Robot_Namespace_from_Library].out | 28 + ...-059-014-Robot_Namespace_from_Library].out | 28 + ...o.robot-059-016-Robot_Library_Keyword].out | 28 + ...o.robot-059-023-Robot_Library_Keyword].out | 28 + ...o.robot-059-029-Robot_Library_Keyword].out | 28 + ...efinition[goto.robot-059-036-Variable].out | 28 + ...efinition[goto.robot-059-039-Variable].out | 28 + ...efinition[goto.robot-059-041-Variable].out | 28 + ....robot-064-004-Robot_BuilIn_Namespace].out | 28 + ....robot-064-007-Robot_BuilIn_Namespace].out | 28 + ....robot-064-010-Robot_BuilIn_Namespace].out | 28 + ...64-012-BuiltIn_Keyword_with_Namespace].out | 28 + ...64-013-BuiltIn_Keyword_with_Namespace].out | 28 + ...64-014-BuiltIn_Keyword_with_Namespace].out | 28 + ...ition[goto.robot-068-013-For_Variable].out | 28 + ...ition[goto.robot-068-014-For_Variable].out | 28 + ...ition[goto.robot-068-015-For_Variable].out | 28 + ...ition[goto.robot-068-023-For_Variable].out | 28 + ...ition[goto.robot-068-025-For_Variable].out | 28 + ...ition[goto.robot-068-027-For_Variable].out | 28 + ...ition[goto.robot-071-017-For_Variable].out | 28 + ...ition[goto.robot-071-018-For_Variable].out | 28 + ...ition[goto.robot-071-019-For_Variable].out | 28 + ...ition[goto.robot-071-024-For_Variable].out | 28 + ...ition[goto.robot-071-026-For_Variable].out | 28 + ...ition[goto.robot-071-028-For_Variable].out | 28 + ...[goto.robot-075-013-Imported_Variable].out | 28 + ...[goto.robot-075-020-Imported_Variable].out | 28 + ...[goto.robot-075-026-Imported_Variable].out | 28 + ...o.robot-078-004-Keyword_from_resource].out | 28 + ...o.robot-078-017-Keyword_from_resource].out | 28 + ...o.robot-078-029-Keyword_from_resource].out | 28 + ...robot-081-004-Namespace_from_resource].out | 28 + ...robot-081-010-Namespace_from_resource].out | 28 + ...robot-081-016-Namespace_from_resource].out | 28 + ...o.robot-081-018-Keyword_from_resource].out | 28 + ...o.robot-081-031-Keyword_from_resource].out | 28 + ...o.robot-081-043-Keyword_from_resource].out | 28 + ...o.robot-084-004-call_a_simple_keyword].out | 28 + ...o.robot-084-012-call_a_simple_keyword].out | 28 + ...o.robot-084-019-call_a_simple_keyword].out | 28 + ...on[goto.robot-086-004-unknown_keyword].out | 5 + ...on[goto.robot-086-013-unknown_keyword].out | 5 + ...on[goto.robot-086-021-unknown_keyword].out | 5 + ...goto.robot-092-015-a_keyword_in_setup].out | 28 + ...goto.robot-092-016-a_keyword_in_setup].out | 28 + ...goto.robot-092-017-a_keyword_in_setup].out | 28 + ...robot-094-018-a_namespace_in_teardown].out | 28 + ...robot-094-021-a_namespace_in_teardown].out | 28 + ...robot-094-024-a_namespace_in_teardown].out | 28 + ...o.robot-094-026-a_keyword_in_teardown].out | 28 + ...o.robot-094-027-a_keyword_in_teardown].out | 28 + ...o.robot-094-028-a_keyword_in_teardown].out | 28 + ...robot-099-018-a_namespace_in_template].out | 28 + ...robot-099-021-a_namespace_in_template].out | 28 + ...robot-099-024-a_namespace_in_template].out | 28 + ...o.robot-099-026-a_keyword_in_template].out | 28 + ...o.robot-099-027-a_keyword_in_template].out | 28 + ...o.robot-099-028-a_keyword_in_template].out | 28 + ...to.robot-109-004-a_keyword_with_emoji].out | 28 + ...to.robot-109-005-a_keyword_with_emoji].out | 28 + ...ion[goto.robot-113-010-variable_in_if].out | 28 + ...oto.robot-116-017-variable_in_else_if].out | 28 + ...bot-121-009-variable_in_if_expression].out | 28 + ...24-016-variable_in_else_if_expression].out | 28 + ...-010-variable_in_inline_if_expression].out | 28 + ...variable_in_inline_else_if_expression].out | 28 + ...-009-variable_in_inline_if_expression].out | 28 + ...variable_in_inline_else_if_expression].out | 28 + ...o.robot-136-025-expression_in_keyword].out | 28 + ....robot-143-041-short_keyword_argument].out | 28 + ...-143-048-keyword_argument_with_spaces].out | 28 + ...-143-053-keyword_argument_with_spaces].out | 28 + ...-143-058-keyword_argument_with_spaces].out | 28 + ...n[goto.robot-149-001-a_simple_keyword].out | 28 + ...n[goto.robot-149-008-a_simple_keyword].out | 28 + ...n[goto.robot-149-015-a_simple_keyword].out | 28 + ...n[goto.robot-155-021-another_argument].out | 28 + ...n[goto.robot-155-023-another_argument].out | 28 + ...n[goto.robot-155-025-another_argument].out | 28 + ...on[goto.robot-155-030-a_default_value].out | 28 + ...on[goto.robot-155-032-a_default_value].out | 28 + ...on[goto.robot-155-034-a_default_value].out | 28 + ...ion[goto.robot-158-013-argument_usage].out | 5 + ...ion[goto.robot-158-014-argument_usage].out | 5 + ...ion[goto.robot-160-013-argument_usage].out | 28 + ...ion[goto.robot-160-015-argument_usage].out | 28 + ...ion[goto.robot-160-017-argument_usage].out | 28 + ...nition[goto.robot-164-021-an_argument].out | 28 + ...nition[goto.robot-164-022-an_argument].out | 28 + ...n[goto.robot-164-030-another_argument].out | 28 + ...n[goto.robot-164-032-another_argument].out | 28 + ...n[goto.robot-164-034-another_argument].out | 28 + ...on[goto.robot-164-039-a_default_value].out | 28 + ...on[goto.robot-164-041-a_default_value].out | 28 + ...on[goto.robot-164-043-a_default_value].out | 28 + ...ion[goto.robot-168-013-argument_usage].out | 28 + ...ion[goto.robot-168-014-argument_usage].out | 28 + ...ion[goto.robot-170-013-argument_usage].out | 28 + ...ion[goto.robot-170-015-argument_usage].out | 28 + ...ion[goto.robot-170-017-argument_usage].out | 28 + ...nition[goto.robot-174-021-an_argument].out | 28 + ...nition[goto.robot-174-022-an_argument].out | 28 + ...n[goto.robot-174-030-another_argument].out | 28 + ...n[goto.robot-174-033-another_argument].out | 28 + ...n[goto.robot-174-035-another_argument].out | 28 + ...on[goto.robot-174-039-a_default_value].out | 5 + ...on[goto.robot-174-040-a_default_value].out | 28 + ....robot-174-048-an_overridden_argument].out | 5 + ....robot-174-049-an_overridden_argument].out | 28 + ...default_value_from_overriden_argument].out | 5 + ...default_value_from_overriden_argument].out | 28 + ...default_value_from_overriden_argument].out | 28 + ...ion[goto.robot-180-013-argument_usage].out | 28 + ...ion[goto.robot-180-014-argument_usage].out | 28 + ...ion[goto.robot-182-013-argument_usage].out | 28 + ...ion[goto.robot-182-015-argument_usage].out | 28 + ...ion[goto.robot-182-017-argument_usage].out | 28 + ...nition[goto.robot-187-021-an_argument].out | 28 + ...n[goto.robot-187-029-another_argument].out | 28 + ...ot-187-034-argument_usage_in_argument].out | 28 + ...ion[goto.robot-191-013-argument_usage].out | 28 + ...ion[goto.robot-193-013-argument_usage].out | 28 + ...tion[goto.robot-197-004-library_alias].out | 28 + ...tion[goto.robot-197-007-library_alias].out | 28 + ...tion[goto.robot-197-010-library_alias].out | 28 + ...tion[goto.robot-199-004-library_alias].out | 28 + ...tion[goto.robot-199-007-library_alias].out | 28 + ...tion[goto.robot-199-010-library_alias].out | 28 + ...t-201-004-library_alias_from_resource].out | 28 + ...t-201-009-library_alias_from_resource].out | 28 + ...t-201-014-library_alias_from_resource].out | 28 + ...oto.robot-205-051-a_global_var_in_doc].out | 28 + ...oto.robot-205-053-a_global_var_in_doc].out | 28 + ...oto.robot-205-055-a_global_var_in_doc].out | 28 + ...goto.robot-205-064-an_argument_in_doc].out | 5 + ...goto.robot-205-067-an_argument_in_doc].out | 5 + ...goto.robot-205-069-an_argument_in_doc].out | 5 + ....robot-208-019-an_argument_in_timeout].out | 28 + ...oto.robot-210-016-an_argument_in_tags].out | 5 + ...oto.robot-210-019-an_argument_in_tags].out | 5 + ...oto.robot-210-021-an_argument_in_tags].out | 5 + ...oto.robot-210-028-an_argument_in_tags].out | 28 + ...oto.robot-210-030-an_argument_in_tags].out | 28 + ...oto.robot-210-032-an_argument_in_tags].out | 28 + ...oto.robot-219-051-a_global_var_in_doc].out | 28 + ...oto.robot-219-053-a_global_var_in_doc].out | 28 + ...oto.robot-219-055-a_global_var_in_doc].out | 28 + ...goto.robot-219-064-an_argument_in_doc].out | 5 + ...goto.robot-219-067-an_argument_in_doc].out | 5 + ...goto.robot-219-069-an_argument_in_doc].out | 5 + ....robot-222-019-an_argument_in_timeout].out | 28 + ...oto.robot-224-016-an_argument_in_tags].out | 5 + ...oto.robot-224-019-an_argument_in_tags].out | 5 + ...oto.robot-224-021-an_argument_in_tags].out | 5 + ...oto.robot-224-028-an_argument_in_tags].out | 28 + ...oto.robot-224-030-an_argument_in_tags].out | 28 + ...oto.robot-224-032-an_argument_in_tags].out | 28 + ...entation[goto.robot-001-007-Separator].out | 5 + ...entation[goto.robot-001-012-Separator].out | 5 + ...entation[goto.robot-001-017-Separator].out | 5 + ...to.robot-001-018-Robot_Library_Import].out | 28 + ...to.robot-001-023-Robot_Library_Import].out | 28 + ...to.robot-001-028-Robot_Library_Import].out | 28 + ....robot-004-018-library_import_by_path].out | 28 + ...o.robot-004-020-var_in_library_import].out | 28 + ...o.robot-004-023-var_in_library_import].out | 28 + ...o.robot-004-025-var_in_library_import].out | 28 + ....robot-004-033-library_import_by_path].out | 28 + ....robot-004-048-library_import_by_path].out | 28 + ...n[goto.robot-007-018-Variables_Import].out | 28 + ...robot-007-020-var_in_variables_import].out | 28 + ...robot-007-023-var_in_variables_import].out | 28 + ...robot-007-025-var_in_variables_import].out | 28 + ...n[goto.robot-007-033-Variables_Import].out | 28 + ...n[goto.robot-007-048-Variables_Import].out | 28 + ...0-018-built_in_var_in_Resource_Import].out | 28 + ....robot-010-020-var_in_resource_import].out | 28 + ....robot-010-023-var_in_resource_import].out | 28 + ....robot-010-025-var_in_resource_import].out | 28 + ...0-040-built_in_var_in_Resource_Import].out | 28 + ...0-062-built_in_var_in_Resource_Import].out | 28 + ...bot-014-020-var_in_Libary_import_path].out | 28 + ...bot-014-021-var_in_Libary_import_path].out | 28 + ...bot-014-022-var_in_Libary_import_path].out | 28 + ...bot-014-057-var_in_library_parameters].out | 28 + ...bot-014-060-var_in_library_parameters].out | 28 + ...bot-014-063-var_in_library_parameters].out | 28 + ...tion[goto.robot-014-082-library_alias].out | 28 + ...tion[goto.robot-014-085-library_alias].out | 28 + ...tion[goto.robot-014-088-library_alias].out | 28 + ...on[goto.robot-023-002-Var_declaration].out | 28 + ...on[goto.robot-023-005-Var_declaration].out | 28 + ...on[goto.robot-023-008-Var_declaration].out | 28 + ...on[goto.robot-025-002-Var_declaration].out | 28 + ...on[goto.robot-025-003-Var_declaration].out | 28 + ...on[goto.robot-025-004-Var_declaration].out | 28 + ...to.robot-027-002-List_Var_declaration].out | 28 + ...to.robot-027-006-List_Var_declaration].out | 28 + ...to.robot-027-009-List_Var_declaration].out | 28 + ...to.robot-029-002-Dict_Var_declaration].out | 28 + ...to.robot-029-006-Dict_Var_declaration].out | 28 + ...to.robot-029-009-Dict_Var_declaration].out | 28 + ...entation[goto.robot-032-021-var_usage].out | 28 + ...entation[goto.robot-032-023-var_usage].out | 28 + ...entation[goto.robot-032-025-var_usage].out | 28 + ...entation[goto.robot-032-030-var_usage].out | 28 + ...entation[goto.robot-032-034-var_usage].out | 28 + ...entation[goto.robot-032-037-var_usage].out | 28 + ...entation[goto.robot-032-042-var_usage].out | 28 + ...entation[goto.robot-032-045-var_usage].out | 28 + ...entation[goto.robot-032-048-var_usage].out | 28 + ...on[goto.robot-043-004-BuiltIn_Keyword].out | 28 + ...on[goto.robot-043-005-BuiltIn_Keyword].out | 28 + ...on[goto.robot-043-006-BuiltIn_Keyword].out | 28 + ...mentation[goto.robot-043-019-Variable].out | 28 + ...mentation[goto.robot-043-021-Variable].out | 28 + ...mentation[goto.robot-043-023-Variable].out | 28 + ...mentation[goto.robot-047-013-List_Var].out | 28 + ...mentation[goto.robot-047-017-List_Var].out | 28 + ...mentation[goto.robot-047-020-List_Var].out | 28 + ....robot-049-013-List_Var_as_normal_var].out | 28 + ....robot-049-017-List_Var_as_normal_var].out | 28 + ....robot-049-020-List_Var_as_normal_var].out | 28 + ...mentation[goto.robot-052-013-Dict_Var].out | 28 + ...mentation[goto.robot-052-017-Dict_Var].out | 28 + ...mentation[goto.robot-052-020-Dict_Var].out | 28 + ....robot-054-013-Dict_Var_as_normal_var].out | 28 + ....robot-054-017-Dict_Var_as_normal_var].out | 28 + ....robot-054-020-Dict_Var_as_normal_var].out | 28 + ...-059-004-Robot_Namespace_from_Library].out | 28 + ...-059-009-Robot_Namespace_from_Library].out | 28 + ...-059-014-Robot_Namespace_from_Library].out | 28 + ...o.robot-059-016-Robot_Library_Keyword].out | 28 + ...o.robot-059-023-Robot_Library_Keyword].out | 28 + ...o.robot-059-029-Robot_Library_Keyword].out | 28 + ...mentation[goto.robot-059-036-Variable].out | 28 + ...mentation[goto.robot-059-039-Variable].out | 28 + ...mentation[goto.robot-059-041-Variable].out | 28 + ....robot-064-004-Robot_BuilIn_Namespace].out | 28 + ....robot-064-007-Robot_BuilIn_Namespace].out | 28 + ....robot-064-010-Robot_BuilIn_Namespace].out | 28 + ...64-012-BuiltIn_Keyword_with_Namespace].out | 28 + ...64-013-BuiltIn_Keyword_with_Namespace].out | 28 + ...64-014-BuiltIn_Keyword_with_Namespace].out | 28 + ...ation[goto.robot-068-013-For_Variable].out | 28 + ...ation[goto.robot-068-014-For_Variable].out | 28 + ...ation[goto.robot-068-015-For_Variable].out | 28 + ...ation[goto.robot-068-023-For_Variable].out | 28 + ...ation[goto.robot-068-025-For_Variable].out | 28 + ...ation[goto.robot-068-027-For_Variable].out | 28 + ...ation[goto.robot-071-017-For_Variable].out | 28 + ...ation[goto.robot-071-018-For_Variable].out | 28 + ...ation[goto.robot-071-019-For_Variable].out | 28 + ...ation[goto.robot-071-024-For_Variable].out | 28 + ...ation[goto.robot-071-026-For_Variable].out | 28 + ...ation[goto.robot-071-028-For_Variable].out | 28 + ...[goto.robot-075-013-Imported_Variable].out | 28 + ...[goto.robot-075-020-Imported_Variable].out | 28 + ...[goto.robot-075-026-Imported_Variable].out | 28 + ...o.robot-078-004-Keyword_from_resource].out | 28 + ...o.robot-078-017-Keyword_from_resource].out | 28 + ...o.robot-078-029-Keyword_from_resource].out | 28 + ...robot-081-004-Namespace_from_resource].out | 28 + ...robot-081-010-Namespace_from_resource].out | 28 + ...robot-081-016-Namespace_from_resource].out | 28 + ...o.robot-081-018-Keyword_from_resource].out | 28 + ...o.robot-081-031-Keyword_from_resource].out | 28 + ...o.robot-081-043-Keyword_from_resource].out | 28 + ...o.robot-084-004-call_a_simple_keyword].out | 28 + ...o.robot-084-012-call_a_simple_keyword].out | 28 + ...o.robot-084-019-call_a_simple_keyword].out | 28 + ...on[goto.robot-086-004-unknown_keyword].out | 5 + ...on[goto.robot-086-013-unknown_keyword].out | 5 + ...on[goto.robot-086-021-unknown_keyword].out | 5 + ...goto.robot-092-015-a_keyword_in_setup].out | 28 + ...goto.robot-092-016-a_keyword_in_setup].out | 28 + ...goto.robot-092-017-a_keyword_in_setup].out | 28 + ...robot-094-018-a_namespace_in_teardown].out | 28 + ...robot-094-021-a_namespace_in_teardown].out | 28 + ...robot-094-024-a_namespace_in_teardown].out | 28 + ...o.robot-094-026-a_keyword_in_teardown].out | 28 + ...o.robot-094-027-a_keyword_in_teardown].out | 28 + ...o.robot-094-028-a_keyword_in_teardown].out | 28 + ...robot-099-018-a_namespace_in_template].out | 28 + ...robot-099-021-a_namespace_in_template].out | 28 + ...robot-099-024-a_namespace_in_template].out | 28 + ...o.robot-099-026-a_keyword_in_template].out | 28 + ...o.robot-099-027-a_keyword_in_template].out | 28 + ...o.robot-099-028-a_keyword_in_template].out | 28 + ...to.robot-109-004-a_keyword_with_emoji].out | 28 + ...to.robot-109-005-a_keyword_with_emoji].out | 28 + ...ion[goto.robot-113-010-variable_in_if].out | 28 + ...oto.robot-116-017-variable_in_else_if].out | 28 + ...bot-121-009-variable_in_if_expression].out | 28 + ...24-016-variable_in_else_if_expression].out | 28 + ...-010-variable_in_inline_if_expression].out | 28 + ...variable_in_inline_else_if_expression].out | 28 + ...-009-variable_in_inline_if_expression].out | 28 + ...variable_in_inline_else_if_expression].out | 28 + ...o.robot-136-025-expression_in_keyword].out | 28 + ....robot-143-041-short_keyword_argument].out | 28 + ...-143-048-keyword_argument_with_spaces].out | 28 + ...-143-053-keyword_argument_with_spaces].out | 28 + ...-143-058-keyword_argument_with_spaces].out | 28 + ...n[goto.robot-149-001-a_simple_keyword].out | 28 + ...n[goto.robot-149-008-a_simple_keyword].out | 28 + ...n[goto.robot-149-015-a_simple_keyword].out | 28 + ...n[goto.robot-155-021-another_argument].out | 28 + ...n[goto.robot-155-023-another_argument].out | 28 + ...n[goto.robot-155-025-another_argument].out | 28 + ...on[goto.robot-155-030-a_default_value].out | 28 + ...on[goto.robot-155-032-a_default_value].out | 28 + ...on[goto.robot-155-034-a_default_value].out | 28 + ...ion[goto.robot-158-013-argument_usage].out | 5 + ...ion[goto.robot-158-014-argument_usage].out | 5 + ...ion[goto.robot-160-013-argument_usage].out | 28 + ...ion[goto.robot-160-015-argument_usage].out | 28 + ...ion[goto.robot-160-017-argument_usage].out | 28 + ...tation[goto.robot-164-021-an_argument].out | 28 + ...tation[goto.robot-164-022-an_argument].out | 28 + ...n[goto.robot-164-030-another_argument].out | 28 + ...n[goto.robot-164-032-another_argument].out | 28 + ...n[goto.robot-164-034-another_argument].out | 28 + ...on[goto.robot-164-039-a_default_value].out | 28 + ...on[goto.robot-164-041-a_default_value].out | 28 + ...on[goto.robot-164-043-a_default_value].out | 28 + ...ion[goto.robot-168-013-argument_usage].out | 28 + ...ion[goto.robot-168-014-argument_usage].out | 28 + ...ion[goto.robot-170-013-argument_usage].out | 28 + ...ion[goto.robot-170-015-argument_usage].out | 28 + ...ion[goto.robot-170-017-argument_usage].out | 28 + ...tation[goto.robot-174-021-an_argument].out | 28 + ...tation[goto.robot-174-022-an_argument].out | 28 + ...n[goto.robot-174-030-another_argument].out | 28 + ...n[goto.robot-174-033-another_argument].out | 28 + ...n[goto.robot-174-035-another_argument].out | 28 + ...on[goto.robot-174-039-a_default_value].out | 5 + ...on[goto.robot-174-040-a_default_value].out | 28 + ....robot-174-048-an_overridden_argument].out | 5 + ....robot-174-049-an_overridden_argument].out | 28 + ...default_value_from_overriden_argument].out | 5 + ...default_value_from_overriden_argument].out | 28 + ...default_value_from_overriden_argument].out | 28 + ...ion[goto.robot-180-013-argument_usage].out | 28 + ...ion[goto.robot-180-014-argument_usage].out | 28 + ...ion[goto.robot-182-013-argument_usage].out | 28 + ...ion[goto.robot-182-015-argument_usage].out | 28 + ...ion[goto.robot-182-017-argument_usage].out | 28 + ...tation[goto.robot-187-021-an_argument].out | 28 + ...n[goto.robot-187-029-another_argument].out | 28 + ...ot-187-034-argument_usage_in_argument].out | 28 + ...ion[goto.robot-191-013-argument_usage].out | 28 + ...ion[goto.robot-193-013-argument_usage].out | 28 + ...tion[goto.robot-197-004-library_alias].out | 28 + ...tion[goto.robot-197-007-library_alias].out | 28 + ...tion[goto.robot-197-010-library_alias].out | 28 + ...tion[goto.robot-199-004-library_alias].out | 28 + ...tion[goto.robot-199-007-library_alias].out | 28 + ...tion[goto.robot-199-010-library_alias].out | 28 + ...t-201-004-library_alias_from_resource].out | 28 + ...t-201-009-library_alias_from_resource].out | 28 + ...t-201-014-library_alias_from_resource].out | 28 + ...oto.robot-205-051-a_global_var_in_doc].out | 28 + ...oto.robot-205-053-a_global_var_in_doc].out | 28 + ...oto.robot-205-055-a_global_var_in_doc].out | 28 + ...goto.robot-205-064-an_argument_in_doc].out | 5 + ...goto.robot-205-067-an_argument_in_doc].out | 5 + ...goto.robot-205-069-an_argument_in_doc].out | 5 + ....robot-208-019-an_argument_in_timeout].out | 28 + ...oto.robot-210-016-an_argument_in_tags].out | 5 + ...oto.robot-210-019-an_argument_in_tags].out | 5 + ...oto.robot-210-021-an_argument_in_tags].out | 5 + ...oto.robot-210-028-an_argument_in_tags].out | 28 + ...oto.robot-210-030-an_argument_in_tags].out | 28 + ...oto.robot-210-032-an_argument_in_tags].out | 28 + ...oto.robot-219-051-a_global_var_in_doc].out | 28 + ...oto.robot-219-053-a_global_var_in_doc].out | 28 + ...oto.robot-219-055-a_global_var_in_doc].out | 28 + ...goto.robot-219-064-an_argument_in_doc].out | 5 + ...goto.robot-219-067-an_argument_in_doc].out | 5 + ...goto.robot-219-069-an_argument_in_doc].out | 5 + ....robot-222-019-an_argument_in_timeout].out | 28 + ...oto.robot-224-016-an_argument_in_tags].out | 5 + ...oto.robot-224-019-an_argument_in_tags].out | 5 + ...oto.robot-224-021-an_argument_in_tags].out | 5 + ...oto.robot-224-028-an_argument_in_tags].out | 28 + ...oto.robot-224-030-an_argument_in_tags].out | 28 + ...oto.robot-224-032-an_argument_in_tags].out | 28 + ...001-018-library_import_by_module_name].out | 15 + ...001-023-library_import_by_module_name].out | 15 + ...001-028-library_import_by_module_name].out | 15 + ...st[hover.robot-003-065-lib_with_alias].out | 15 + ...st[hover.robot-003-069-lib_with_alias].out | 15 + ...st[hover.robot-003-073-lib_with_alias].out | 15 + ...ot-005-040-Variable_in_library_params].out | 15 + ...ot-005-043-Variable_in_library_params].out | 15 + ...ot-005-046-Variable_in_library_params].out | 15 + ...ot-007-020-variable_in_library_import].out | 15 + ...ot-007-023-variable_in_library_import].out | 15 + ...ot-007-025-variable_in_library_import].out | 15 + ...t-007-035-library_import_by_path_name].out | 15 + ...t-007-042-library_import_by_path_name].out | 15 + ...t-007-048-library_import_by_path_name].out | 15 + ...-010-020-variable_in_variables_import].out | 15 + ...-010-023-variable_in_variables_import].out | 15 + ...-010-025-variable_in_variables_import].out | 15 + ...-010-035-variable_import_by_path_name].out | 15 + ...-010-042-variable_import_by_path_name].out | 15 + ...-010-048-variable_import_by_path_name].out | 15 + ...t-013-020-variable_in_resource_import].out | 15 + ...t-013-023-variable_in_resource_import].out | 15 + ...t-013-025-variable_in_resource_import].out | 15 + ...-013-040-resource_import_by_path_name].out | 15 + ...-013-047-resource_import_by_path_name].out | 15 + ...-013-053-resource_import_by_path_name].out | 15 + ....test[hover.robot-019-015-unknown_lib].out | 15 + ....test[hover.robot-019-022-unknown_lib].out | 15 + ....test[hover.robot-019-028-unknown_lib].out | 15 + ...r.robot-019-046-unknown_lib_namespace].out | 15 + ...r.robot-019-050-unknown_lib_namespace].out | 15 + ...r.robot-019-053-unknown_lib_namespace].out | 5 + ...t[hover.robot-022-015-lib_with_errors].out | 15 + ...t[hover.robot-022-023-lib_with_errors].out | 15 + ...t[hover.robot-022-031-lib_with_errors].out | 15 + ...r.robot-022-057-lib_with_errors_alias].out | 15 + ...r.robot-022-061-lib_with_errors_alias].out | 15 + ...r.robot-022-064-lib_with_errors_alias].out | 15 + ...over.robot-025-015-lib_with_no_errors].out | 15 + ...over.robot-025-023-lib_with_no_errors].out | 15 + ...over.robot-025-031-lib_with_no_errors].out | 15 + ...obot-025-058-lib_with_no_errors_alias].out | 15 + ...obot-025-063-lib_with_no_errors_alias].out | 15 + ...obot-025-067-lib_with_no_errors_alias].out | 15 + ...er.robot-030-002-variable_declaration].out | 15 + ...er.robot-030-004-variable_declaration].out | 15 + ...er.robot-030-006-variable_declaration].out | 15 + ...over.robot-030-008-not_the_equal_sign].out | 5 + ...r.robot-033-002-variable_declarations].out | 15 + ...r.robot-033-005-variable_declarations].out | 15 + ...r.robot-033-007-variable_declarations].out | 15 + ...038-002-no_hover_for_invalid_variable].out | 5 + ...038-009-no_hover_for_invalid_variable].out | 5 + ...038-016-no_hover_for_invalid_variable].out | 5 + ....robot-043-010-complex_var_expression].out | 15 + ...er.test[hover.robot-043-017-inner_var].out | 15 + ...t[hover.robot-043-022-inner_inner_var].out | 15 + ....robot-048-010-complex_var_expression].out | 15 + ...er.test[hover.robot-048-014-inner_var].out | 5 + ...er.test[hover.robot-048-018-inner_var].out | 5 + ...t[hover.robot-048-022-inner_inner_var].out | 5 + ...er.test[hover.robot-048-029-outer_var].out | 15 + ...er.test[hover.robot-048-036-extra_var].out | 15 + ...t[hover.robot-058-002-number_variable].out | 15 + ...hover.robot-058-010-number_expression].out | 5 + ...hover.robot-058-011-number_expression].out | 5 + ...hover.robot-058-012-number_expression].out | 5 + ...[hover.robot-064-013-Keyword_in_Setup].out | 15 + ...[hover.robot-064-014-Keyword_in_Setup].out | 15 + ...[hover.robot-064-015-Keyword_in_Setup].out | 15 + ...r.robot-066-016-Namespace_in_Teardown].out | 15 + ...r.robot-066-019-Namespace_in_Teardown].out | 15 + ...r.robot-066-022-Namespace_in_Teardown].out | 15 + ...ver.robot-066-024-Keyword_in_Teardown].out | 15 + ...ver.robot-066-025-Keyword_in_Teardown].out | 15 + ...ver.robot-066-026-Keyword_in_Teardown].out | 15 + ..._hover_for_invalid_variable_reference].out | 5 + ..._hover_for_invalid_variable_reference].out | 5 + ..._hover_for_invalid_variable_reference].out | 5 + ...er.robot-075-004-Keyword_from_Library].out | 15 + ...er.robot-075-005-Keyword_from_Library].out | 15 + ...er.robot-075-006-Keyword_from_Library].out | 15 + ...obot-078-004-namespace_before_keyword].out | 15 + ...obot-078-009-namespace_before_keyword].out | 15 + ...obot-078-014-namespace_before_keyword].out | 15 + ....robot-078-016-Keyword_with_namespace].out | 15 + ....robot-078-023-Keyword_with_namespace].out | 15 + ....robot-078-029-Keyword_with_namespace].out | 15 + ...081-012-FOR_loop_variable_declaration].out | 5 + ...081-014-FOR_loop_variable_declaration].out | 15 + ...081-015-FOR_loop_variable_declaration].out | 15 + ...ver.robot-083-008-Keyword_in_FOR_loop].out | 15 + ...ver.robot-083-009-Keyword_in_FOR_loop].out | 15 + ...ver.robot-083-010-Keyword_in_FOR_loop].out | 15 + ...t[hover.robot-086-004-BuiltIn_Keyword].out | 15 + ...t[hover.robot-086-005-BuiltIn_Keyword].out | 15 + ...t[hover.robot-086-006-BuiltIn_Keyword].out | 15 + ...r.robot-086-013-Command_line_variable].out | 15 + ...r.robot-086-016-Command_line_variable].out | 15 + ...r.robot-086-019-Command_line_variable].out | 15 + ...hover.test[hover.robot-089-001-Spaces].out | 5 + ...hover.test[hover.robot-089-002-Spaces].out | 5 + ...hover.test[hover.robot-089-003-Spaces].out | 5 + ...[hover.robot-089-013-BuiltIn_variable].out | 15 + ...[hover.robot-089-016-BuiltIn_variable].out | 15 + ...[hover.robot-089-018-BuiltIn_variable].out | 15 + ...hover.robot-092-013-variable_from_lib].out | 15 + ...hover.robot-092-020-variable_from_lib].out | 15 + ...hover.robot-092-026-variable_from_lib].out | 15 + ...r.robot-095-004-Keyword_from_resource].out | 15 + ...r.robot-095-017-Keyword_from_resource].out | 15 + ...r.robot-095-029-Keyword_from_resource].out | 15 + ...robot-098-004-Namespace_from_resource].out | 15 + ...robot-098-010-Namespace_from_resource].out | 15 + ...robot-098-016-Namespace_from_resource].out | 15 + ...wordCall_from_resource_with_Namespace].out | 15 + ...wordCall_from_resource_with_Namespace].out | 15 + ...wordCall_from_resource_with_Namespace].out | 15 + ...er.test[hover.robot-102-001-Test_Case].out | 15 + ...er.test[hover.robot-102-003-Test_Case].out | 15 + ...er.test[hover.robot-102-005-Test_Case].out | 15 + ...r.robot-104-018-Namespace_in_Template].out | 15 + ...r.robot-104-021-Namespace_in_Template].out | 15 + ...r.robot-104-024-Namespace_in_Template].out | 15 + ...ver.robot-104-026-Keyword_in_Template].out | 15 + ...ver.robot-104-027-Keyword_in_Template].out | 15 + ...ver.robot-104-028-Keyword_in_Template].out | 15 + ...ver.robot-111-006-Keyword_assignement].out | 15 + ...ver.robot-111-009-Keyword_assignement].out | 15 + ...ver.robot-111-011-Keyword_assignement].out | 15 + ...6-Keyword_assignment_with_equals_sign].out | 15 + ...9-Keyword_assignment_with_equals_sign].out | 15 + ...1-Keyword_assignment_with_equals_sign].out | 15 + ...st[hover.robot-126-010-variable_in_if].out | 15 + ...ver.robot-129-017-variable_in_else_if].out | 15 + ...bot-134-009-variable_in_if_expression].out | 15 + ...37-016-variable_in_else_if_expression].out | 15 + ...-010-variable_in_inline_if_expression].out | 15 + ...variable_in_inline_else_if_expression].out | 15 + ...-009-variable_in_inline_if_expression].out | 15 + ...variable_in_inline_else_if_expression].out | 15 + ...over.robot-151-015-BDD_Given_in_setup].out | 5 + ...over.robot-151-017-BDD_Given_in_setup].out | 5 + ...over.robot-151-019-BDD_Given_in_setup].out | 5 + ...er.robot-151-021-BDD_Keyword_in_setup].out | 15 + ...er.robot-151-022-BDD_Keyword_in_setup].out | 15 + ...er.robot-151-023-BDD_Keyword_in_setup].out | 15 + ...er.robot-154-018-BDD_Then_in_Teardown].out | 5 + ...er.robot-154-020-BDD_Then_in_Teardown].out | 5 + ...er.robot-154-021-BDD_Then_in_Teardown].out | 5 + ...bot-154-023-BDD_Namespace_in_Teardown].out | 15 + ...bot-154-026-BDD_Namespace_in_Teardown].out | 15 + ...bot-154-029-BDD_Namespace_in_Teardown].out | 15 + ...robot-154-031-BDD_Keyword_in_Teardown].out | 15 + ...robot-154-032-BDD_Keyword_in_Teardown].out | 15 + ...robot-154-033-BDD_Keyword_in_Teardown].out | 15 + ...er.test[hover.robot-158-004-BDD_Given].out | 5 + ...er.test[hover.robot-158-006-BDD_Given].out | 5 + ...er.test[hover.robot-158-008-BDD_Given].out | 5 + ...hover.robot-158-010-BDD_Given_keyword].out | 15 + ...hover.robot-158-011-BDD_Given_keyword].out | 15 + ...hover.robot-158-012-BDD_Given_keyword].out | 15 + ...ver.test[hover.robot-161-004-BDD_When].out | 5 + ...ver.test[hover.robot-161-006-BDD_When].out | 5 + ...ver.test[hover.robot-161-007-BDD_When].out | 5 + ...[hover.robot-161-009-BDD_When_keyword].out | 15 + ...[hover.robot-161-010-BDD_When_keyword].out | 15 + ...[hover.robot-161-011-BDD_When_keyword].out | 15 + ...over.test[hover.robot-164-004-BDD_And].out | 5 + ...over.test[hover.robot-164-005-BDD_And].out | 5 + ...over.test[hover.robot-164-006-BDD_And].out | 5 + ...t[hover.robot-164-008-BDD_And_keyword].out | 15 + ...t[hover.robot-164-009-BDD_And_keyword].out | 15 + ...t[hover.robot-164-010-BDD_And_keyword].out | 15 + ...ver.test[hover.robot-167-004-BDD_Then].out | 5 + ...ver.test[hover.robot-167-006-BDD_Then].out | 5 + ...ver.test[hover.robot-167-007-BDD_Then].out | 5 + ...[hover.robot-167-008-BDD_Then_keyword].out | 5 + ...[hover.robot-167-009-BDD_Then_keyword].out | 15 + ...[hover.robot-167-010-BDD_Then_keyword].out | 15 + ...over.test[hover.robot-170-004-BDD_But].out | 5 + ...over.test[hover.robot-170-005-BDD_But].out | 5 + ...over.test[hover.robot-170-006-BDD_But].out | 5 + ...t[hover.robot-170-008-BDD_But_keyword].out | 15 + ...t[hover.robot-170-009-BDD_But_keyword].out | 15 + ...t[hover.robot-170-010-BDD_But_keyword].out | 15 + ...obot-173-004-BDD_given_with_namespace].out | 5 + ...obot-173-006-BDD_given_with_namespace].out | 5 + ...obot-173-008-BDD_given_with_namespace].out | 5 + ...-173-010-BDD_namespace_with_namespace].out | 15 + ...-173-013-BDD_namespace_with_namespace].out | 15 + ...-173-016-BDD_namespace_with_namespace].out | 15 + ...ot-173-018-BDD_keyword_with_namespace].out | 15 + ...ot-173-019-BDD_keyword_with_namespace].out | 15 + ...ot-173-020-BDD_keyword_with_namespace].out | 15 + ...obot-178-037-BDD_Given_in_run_keyword].out | 15 + ...obot-178-038-BDD_Given_in_run_keyword].out | 15 + ...obot-178-039-BDD_Given_in_run_keyword].out | 15 + ...obot-178-062-BDD_Given_in_run_keyword].out | 15 + ...obot-178-063-BDD_Given_in_run_keyword].out | 15 + ...obot-178-064-BDD_Given_in_run_keyword].out | 15 + ...obot-178-079-BDD_Given_in_run_keyword].out | 15 + ...obot-178-080-BDD_Given_in_run_keyword].out | 15 + ...obot-178-081-BDD_Given_in_run_keyword].out | 15 + ...mespace_in_run_keyword_with_namespace].out | 15 + ...mespace_in_run_keyword_with_namespace].out | 15 + ...mespace_in_run_keyword_with_namespace].out | 15 + ...keyword_in_run_keyword_with_namespace].out | 15 + ...keyword_in_run_keyword_with_namespace].out | 15 + ...keyword_in_run_keyword_with_namespace].out | 15 + ...[hover.robot-193-004-keyword_with_dot].out | 15 + ...[hover.robot-193-010-keyword_with_dot].out | 15 + ...[hover.robot-193-015-keyword_with_dot].out | 15 + ...195-004-namespace_in_keyword_with_dot].out | 15 + ...195-010-namespace_in_keyword_with_dot].out | 15 + ...195-016-namespace_in_keyword_with_dot].out | 15 + ...-018-keyword_with_dot_after_namespace].out | 15 + ...-024-keyword_with_dot_after_namespace].out | 15 + ...-029-keyword_with_dot_after_namespace].out | 15 + ...er.robot-200-004-duplicated_keyword_a].out | 15 + ...er.robot-200-014-duplicated_keyword_a].out | 15 + ...er.robot-200-023-duplicated_keyword_a].out | 15 + ...er.robot-202-004-duplicated_keyword_b].out | 15 + ...er.robot-202-014-duplicated_keyword_b].out | 15 + ...er.robot-202-023-duplicated_keyword_b].out | 15 + ...over.robot-204-004-duplicated_keyword].out | 15 + ...over.robot-204-013-duplicated_keyword].out | 15 + ...over.robot-204-021-duplicated_keyword].out | 15 + ...4-duplicated_keyword_a_with_namespace].out | 15 + ...9-duplicated_keyword_a_with_namespace].out | 15 + ...4-duplicated_keyword_a_with_namespace].out | 15 + ...4-duplicated_keyword_b_with_namespace].out | 15 + ...9-duplicated_keyword_b_with_namespace].out | 15 + ...4-duplicated_keyword_b_with_namespace].out | 15 + ...004-duplicated_keyword_with_namespace].out | 15 + ...018-duplicated_keyword_with_namespace].out | 15 + ...032-duplicated_keyword_with_namespace].out | 15 + ...er.robot-214-004-a_keyword_with_emoji].out | 15 + ...er.robot-214-005-a_keyword_with_emoji].out | 15 + ...obot-218-004-namespace_of_unknown_lib].out | 15 + ...obot-218-007-namespace_of_unknown_lib].out | 15 + ...obot-218-010-namespace_of_unknown_lib].out | 15 + ....robot-218-012-keyword_of_unknown_lib].out | 5 + ....robot-218-020-keyword_of_unknown_lib].out | 5 + ....robot-218-027-keyword_of_unknown_lib].out | 5 + ...obot-221-004-namespace_of_unknown_lib].out | 15 + ...obot-221-007-namespace_of_unknown_lib].out | 15 + ...obot-221-010-namespace_of_unknown_lib].out | 15 + ....robot-221-012-keyword_of_unknown_lib].out | 5 + ....robot-221-022-keyword_of_unknown_lib].out | 5 + ....robot-221-032-keyword_of_unknown_lib].out | 5 + ...t-224-004-namespace_of_lib_with_error].out | 15 + ...t-224-008-namespace_of_lib_with_error].out | 15 + ...t-224-011-namespace_of_lib_with_error].out | 15 + ...bot-224-013-keyword_of_lib_with_error].out | 15 + ...bot-224-021-keyword_of_lib_with_error].out | 15 + ...bot-224-029-keyword_of_lib_with_error].out | 15 + ...27-004-namespace_of_lib_with_no_error].out | 15 + ...27-009-namespace_of_lib_with_no_error].out | 15 + ...27-013-namespace_of_lib_with_no_error].out | 15 + ...-227-015-keyword_of_lib_with_no_error].out | 15 + ...-227-023-keyword_of_lib_with_no_error].out | 15 + ...-227-031-keyword_of_lib_with_no_error].out | 15 + ...pace_of_lib_with_no_error_with_spaces].out | 15 + ...pace_of_lib_with_no_error_with_spaces].out | 15 + ...pace_of_lib_with_no_error_with_spaces].out | 15 + ...word_of_lib_with_no_error_with_spaces].out | 15 + ...word_of_lib_with_no_error_with_spaces].out | 15 + ...word_of_lib_with_no_error_with_spaces].out | 15 + ....robot-235-041-short_keyword_argument].out | 15 + ...-235-048-keyword_argument_with_spaces].out | 15 + ...-235-053-keyword_argument_with_spaces].out | 15 + ...-235-058-keyword_argument_with_spaces].out | 15 + ....test[hover.robot-242-004-run_keyword].out | 15 + ....test[hover.robot-242-009-run_keyword].out | 15 + ....test[hover.robot-242-014-run_keyword].out | 15 + ...er.robot-242-019-run_keyword_argument].out | 15 + ...er.robot-242-020-run_keyword_argument].out | 15 + ...er.robot-242-021-run_keyword_argument].out | 15 + ...test[hover.robot-246-004-run_keywords].out | 15 + ...test[hover.robot-246-010-run_keywords].out | 15 + ...test[hover.robot-246-015-run_keywords].out | 15 + ...t-246-020-run_keywords_simple_keyword].out | 15 + ...t-246-028-run_keywords_simple_keyword].out | 15 + ...t-246-035-run_keywords_simple_keyword].out | 15 + ...keywords_second_parameter_with_spaces].out | 15 + ...keywords_second_parameter_with_spaces].out | 15 + ...keywords_second_parameter_with_spaces].out | 15 + ...test[hover.robot-251-004-run_keywords].out | 15 + ...test[hover.robot-251-010-run_keywords].out | 15 + ...test[hover.robot-251-015-run_keywords].out | 15 + ...rds_simple_keyword,_parameter_and_AND].out | 15 + ...rds_simple_keyword,_parameter_and_AND].out | 15 + ...rds_simple_keyword,_parameter_and_AND].out | 15 + ...st_hover.test[hover.robot-251-029-AND].out | 5 + ...st_hover.test[hover.robot-251-030-AND].out | 5 + ...st_hover.test[hover.robot-251-031-AND].out | 5 + ...4-run_keywords_simple_keyword_and_AND].out | 15 + ...2-run_keywords_simple_keyword_and_AND].out | 15 + ...9-run_keywords_simple_keyword_and_AND].out | 15 + ...cond_parameter_with_spaces_and_no_AND].out | 15 + ...cond_parameter_with_spaces_and_no_AND].out | 15 + ...cond_parameter_with_spaces_and_no_AND].out | 15 + ...yword_with_extra_spaces_and_parameter].out | 15 + ...yword_with_extra_spaces_and_parameter].out | 15 + ...yword_with_extra_spaces_and_parameter].out | 15 + ...yword_with_extra_spaces_and_parameter].out | 15 + ...yword_with_extra_spaces_and_parameter].out | 15 + ...yword_with_extra_spaces_and_parameter].out | 15 + ...[hover.robot-267-021-another_argument].out | 15 + ...[hover.robot-267-023-another_argument].out | 15 + ...[hover.robot-267-025-another_argument].out | 15 + ...t[hover.robot-267-030-a_default_value].out | 15 + ...t[hover.robot-267-032-a_default_value].out | 15 + ...t[hover.robot-267-034-a_default_value].out | 15 + ...st[hover.robot-270-013-argument_usage].out | 5 + ...st[hover.robot-270-014-argument_usage].out | 5 + ...st[hover.robot-272-013-argument_usage].out | 15 + ...st[hover.robot-272-015-argument_usage].out | 15 + ...st[hover.robot-272-017-argument_usage].out | 15 + ....test[hover.robot-276-021-an_argument].out | 15 + ....test[hover.robot-276-022-an_argument].out | 15 + ...[hover.robot-276-030-another_argument].out | 15 + ...[hover.robot-276-032-another_argument].out | 15 + ...[hover.robot-276-034-another_argument].out | 15 + ...t[hover.robot-276-039-a_default_value].out | 15 + ...t[hover.robot-276-041-a_default_value].out | 15 + ...t[hover.robot-276-043-a_default_value].out | 15 + ...st[hover.robot-280-013-argument_usage].out | 15 + ...st[hover.robot-280-014-argument_usage].out | 15 + ...st[hover.robot-282-013-argument_usage].out | 15 + ...st[hover.robot-282-015-argument_usage].out | 15 + ...st[hover.robot-282-017-argument_usage].out | 15 + ....test[hover.robot-286-021-an_argument].out | 15 + ...[hover.robot-286-029-another_argument].out | 15 + ...ot-286-034-argument_usage_in_argument].out | 15 + ...st[hover.robot-290-013-argument_usage].out | 15 + ...st[hover.robot-292-013-argument_usage].out | 15 + ...ences.robot-001-016-a_builtin_library].out | 86 + ...ences.robot-001-021-a_builtin_library].out | 86 + ...ences.robot-001-026-a_builtin_library].out | 86 + ...3-018-Variable_in_library_import_path].out | 149 + ...3-021-Variable_in_library_import_path].out | 149 + ...3-023-Variable_in_library_import_path].out | 149 + ...ot-003-030-a_custom_library_with_path].out | 59 + ...ot-003-037-a_custom_library_with_path].out | 59 + ...ot-003-043-a_custom_library_with_path].out | 59 + ...018-Variable_in_variables_import_path].out | 149 + ...021-Variable_in_variables_import_path].out | 149 + ...023-Variable_in_variables_import_path].out | 149 + ...ences.robot-006-033-a_variable_import].out | 68 + ...ences.robot-006-040-a_variable_import].out | 68 + ...ences.robot-006-046-a_variable_import].out | 68 + ...-018-Variable_in_resource_import_path].out | 149 + ...-021-Variable_in_resource_import_path].out | 149 + ...-023-Variable_in_resource_import_path].out | 149 + ...ot-013-038-Variable_in_library_params].out | 32 + ...ot-013-041-Variable_in_library_params].out | 32 + ...ot-013-044-Variable_in_library_params].out | 32 + ...e_fixture_keyword_call_with_namespace].out | 239 + ...e_fixture_keyword_call_with_namespace].out | 239 + ...e_fixture_keyword_call_with_namespace].out | 239 + ...t_fixture_keyword_call_with_namespace].out | 239 + ...t_fixture_keyword_call_with_namespace].out | 239 + ...t_fixture_keyword_call_with_namespace].out | 239 + ...erences.robot-022-002-simple_variable].out | 113 + ...erences.robot-022-004-simple_variable].out | 113 + ...erences.robot-022-006-simple_variable].out | 113 + ...nces.robot-024-002-another_simple_var].out | 32 + ...nces.robot-024-005-another_simple_var].out | 32 + ...nces.robot-024-008-another_simple_var].out | 32 + ...rences.robot-027-002-a_var_with_emoji].out | 50 + ...rences.robot-027-004-a_var_with_emoji].out | 50 + ...rences.robot-027-006-a_var_with_emoji].out | 5 + ...es.robot-032-015-fixture_keyword_call].out | 239 + ...es.robot-032-022-fixture_keyword_call].out | 239 + ...es.robot-032-028-fixture_keyword_call].out | 239 + ...6-fixture_keyword_call_with_namespace].out | 239 + ...3-fixture_keyword_call_with_namespace].out | 239 + ...9-fixture_keyword_call_with_namespace].out | 239 + ...ces.robot-036-004-simple_keyword_call].out | 2462 + ...ces.robot-036-005-simple_keyword_call].out | 2462 + ...ces.robot-036-006-simple_keyword_call].out | 2462 + ...ces.robot-038-004-multiple_references].out | 239 + ...ces.robot-038-011-multiple_references].out | 239 + ...ces.robot-038-017-multiple_references].out | 239 + ...12-multiple_references_with_namespace].out | 239 + ...19-multiple_references_with_namespace].out | 239 + ...25-multiple_references_with_namespace].out | 239 + ...nces.robot-040-035-multiple_variables].out | 113 + ...nces.robot-040-037-multiple_variables].out | 113 + ...nces.robot-040-039-multiple_variables].out | 113 + ...ces.robot-043-013-a_var_from_resource].out | 41 + ...ces.robot-043-022-a_var_from_resource].out | 41 + ...ces.robot-043-030-a_var_from_resource].out | 41 + ...rences.robot-047-018-template_keyword].out | 239 + ...rences.robot-047-025-template_keyword].out | 239 + ...rences.robot-047-031-template_keyword].out | 239 + ...3-026-template_keyword_with_namespace].out | 239 + ...3-033-template_keyword_with_namespace].out | 239 + ...3-039-template_keyword_with_namespace].out | 239 + ...ces.robot-059-006-Keyword_assignement].out | 41 + ...ces.robot-059-009-Keyword_assignement].out | 41 + ...ces.robot-059-011-Keyword_assignement].out | 41 + ...Keyword_reassignment_with_equals_sign].out | 5 + ...Keyword_reassignment_with_equals_sign].out | 41 + ...Keyword_reassignment_with_equals_sign].out | 41 + ...ot-064-025-Keyword_variable_reference].out | 41 + ...ot-064-028-Keyword_variable_reference].out | 41 + ...ot-064-030-Keyword_variable_reference].out | 41 + ...bot-069-015-Embedded_keyword_in_setup].out | 41 + ...bot-069-029-Embedded_keyword_in_setup].out | 41 + ...bot-069-043-Embedded_keyword_in_setup].out | 41 + ...-071-018-Embedded_keyword_in_teardown].out | 41 + ...-071-034-Embedded_keyword_in_teardown].out | 41 + ...-071-049-Embedded_keyword_in_teardown].out | 41 + ...rences.robot-074-004-Embedded_keyword].out | 41 + ...rences.robot-074-018-Embedded_keyword].out | 41 + ...rences.robot-074-032-Embedded_keyword].out | 41 + ...edded_keyword_with_regex_only_numbers].out | 32 + ...edded_keyword_with_regex_only_numbers].out | 32 + ...edded_keyword_with_regex_only_numbers].out | 32 + ...edded_keyword_with_regex_only_numbers].out | 32 + ...edded_keyword_with_regex_only_numbers].out | 32 + ...edded_keyword_with_regex_only_numbers].out | 32 + ...ed_keyword_with_regex_a_to_z_an_space].out | 59 + ...ed_keyword_with_regex_a_to_z_an_space].out | 59 + ...ed_keyword_with_regex_a_to_z_an_space].out | 59 + ...85-004-Embedded_keyword_with_variable].out | 32 + ...85-019-Embedded_keyword_with_variable].out | 23 + ...85-034-Embedded_keyword_with_variable].out | 32 + ...Embedded_keyword_with_emojii_variable].out | 32 + ...Embedded_keyword_with_emojii_variable].out | 32 + ...Embedded_keyword_with_emojii_variable].out | 5 + ...us_Embedded_keyword_with_regex_a_to_z].out | 59 + ...us_Embedded_keyword_with_regex_a_to_z].out | 59 + ...us_Embedded_keyword_with_regex_a_to_z].out | 59 + ...ded_keyword_with_regex_a_to_z_ignored].out | 59 + ...ded_keyword_with_regex_a_to_z_ignored].out | 59 + ...ded_keyword_with_regex_a_to_z_ignored].out | 59 + ...d_keyword_with_regex_a_to_z_and_space].out | 59 + ...d_keyword_with_regex_a_to_z_and_space].out | 59 + ...d_keyword_with_regex_a_to_z_and_space].out | 59 + ...t-098-004-Embedded_keyword_with_emoji].out | 59 + ...t-098-020-Embedded_keyword_with_emoji].out | 59 + ...t-098-035-Embedded_keyword_with_emoji].out | 5 + ...es.robot-103-004-a_keyword_with_emoji].out | 86 + ...es.robot-103-006-a_keyword_with_emoji].out | 86 + ...es.robot-103-007-a_keyword_with_emoji].out | 5 + ...04-a_keyword_with_namespace_and_emoji].out | 5 + ...13-a_keyword_with_namespace_and_emoji].out | 5 + ...21-a_keyword_with_namespace_and_emoji].out | 5 + ...s.robot-105-028-a_variable_with_emoji].out | 50 + ...s.robot-105-031-a_variable_with_emoji].out | 5 + ...s.robot-105-033-a_variable_with_emoji].out | 32 + ....robot-111-041-short_keyword_argument].out | 50 + ...-111-048-keyword_argument_with_spaces].out | 50 + ...-111-053-keyword_argument_with_spaces].out | 50 + ...-111-058-keyword_argument_with_spaces].out | 50 + ...obot-111-066-another_keyword_argument].out | 50 + ...obot-111-072-another_keyword_argument].out | 50 + ...obot-111-077-another_keyword_argument].out | 50 + ...rences.robot-125-001-Embedded_keyword].out | 32 + ...rences.robot-125-002-Embedded_keyword].out | 32 + ...rences.robot-125-006-Embedded_keyword].out | 23 + ...rences.robot-125-009-Embedded_keyword].out | 23 + ...rences.robot-125-011-Embedded_keyword].out | 23 + ...robot-128-019-embedded_argument_usage].out | 23 + ...robot-128-022-embedded_argument_usage].out | 23 + ...robot-128-024-embedded_argument_usage].out | 23 + ...robot-128-038-embedded_argument_usage].out | 23 + ...robot-128-040-embedded_argument_usage].out | 23 + ...robot-128-042-embedded_argument_usage].out | 23 + ...rences.robot-132-001-Embedded_keyword].out | 32 + ...rences.robot-132-002-Embedded_keyword].out | 32 + ...rences.robot-137-001-Embedded_keyword].out | 32 + ...rences.robot-137-002-Embedded_keyword].out | 32 + ...rences.robot-141-001-Embedded_keyword].out | 59 + ...rences.robot-141-017-Embedded_keyword].out | 59 + ...rences.robot-141-033-Embedded_keyword].out | 23 + ...rences.robot-145-001-Embedded_keyword].out | 32 + ...rences.robot-145-002-Embedded_keyword].out | 32 + ...rences.robot-150-021-another_argument].out | 23 + ...rences.robot-150-023-another_argument].out | 23 + ...rences.robot-150-025-another_argument].out | 23 + ...erences.robot-150-030-a_default_value].out | 113 + ...erences.robot-150-032-a_default_value].out | 113 + ...erences.robot-150-034-a_default_value].out | 113 + ...ferences.robot-153-013-argument_usage].out | 5 + ...ferences.robot-153-014-argument_usage].out | 5 + ...ferences.robot-155-013-argument_usage].out | 23 + ...ferences.robot-155-015-argument_usage].out | 23 + ...ferences.robot-155-017-argument_usage].out | 23 + ...[references.robot-159-021-an_argument].out | 23 + ...[references.robot-159-022-an_argument].out | 23 + ...rences.robot-159-030-another_argument].out | 23 + ...rences.robot-159-032-another_argument].out | 23 + ...rences.robot-159-034-another_argument].out | 23 + ...erences.robot-159-039-a_default_value].out | 113 + ...erences.robot-159-041-a_default_value].out | 113 + ...erences.robot-159-043-a_default_value].out | 113 + ...ferences.robot-163-013-argument_usage].out | 23 + ...ferences.robot-163-014-argument_usage].out | 23 + ...ferences.robot-165-013-argument_usage].out | 23 + ...ferences.robot-165-015-argument_usage].out | 23 + ...ferences.robot-165-017-argument_usage].out | 23 + ...[references.robot-169-021-an_argument].out | 32 + ...rences.robot-169-029-another_argument].out | 23 + ...ot-169-034-argument_usage_in_argument].out | 32 + ...ferences.robot-173-013-argument_usage].out | 32 + ...ferences.robot-175-013-argument_usage].out | 23 + ...ces.robot-179-051-a_global_var_in_doc].out | 113 + ...ces.robot-179-053-a_global_var_in_doc].out | 113 + ...ces.robot-179-055-a_global_var_in_doc].out | 113 + ...nces.robot-179-064-an_argument_in_doc].out | 5 + ....robot-182-019-an_argument_in_timeout].out | 41 + ...ces.robot-184-016-an_argument_in_tags].out | 23 + ...ces.robot-184-023-an_argument_in_tags].out | 113 + ...ces.robot-184-025-an_argument_in_tags].out | 113 + ...ces.robot-184-027-an_argument_in_tags].out | 113 + ...ces.robot-194-051-a_global_var_in_doc].out | 113 + ...ces.robot-194-053-a_global_var_in_doc].out | 113 + ...ces.robot-194-055-a_global_var_in_doc].out | 113 + ...nces.robot-194-064-an_argument_in_doc].out | 5 + ....robot-197-019-an_argument_in_timeout].out | 50 + ...ces.robot-199-016-an_argument_in_tags].out | 23 + ...ces.robot-199-023-an_argument_in_tags].out | 113 + ...ces.robot-199-025-an_argument_in_tags].out | 113 + ...ces.robot-199-027-an_argument_in_tags].out | 113 + ...-206-027-a_local_variable_in_teardown].out | 23 + ...-206-030-a_local_variable_in_teardown].out | 23 + ...-206-032-a_local_variable_in_teardown].out | 23 + ...rences.robot-210-013-counter_variable].out | 41 + ...rences.robot-210-016-counter_variable].out | 41 + ...rences.robot-210-019-counter_variable].out | 41 + ....robot-213-028-counter_variable_usage].out | 41 + ....robot-213-031-counter_variable_usage].out | 41 + ....robot-213-034-counter_variable_usage].out | 41 + ...t-215-017-counter_variable_assignment].out | 41 + ...t-215-020-counter_variable_assignment].out | 41 + ...t-215-023-counter_variable_assignment].out | 41 + ...15-031-another_counter_variable_usage].out | 41 + ...15-034-another_counter_variable_usage].out | 41 + ...15-037-another_counter_variable_usage].out | 41 + ...[references.robot-224-020-an_argument].out | 5 + ...[references.robot-224-022-an_argument].out | 23 + ...[references.robot-224-023-an_argument].out | 23 + ...bot-226-013-local_variable_definition].out | 41 + ...bot-226-016-local_variable_definition].out | 41 + ...bot-226-018-local_variable_definition].out | 41 + ...ences.robot-226-052-an_argument_usage].out | 23 + ...ences.robot-226-053-an_argument_usage].out | 23 + ...ences.robot-226-054-an_argument_usage].out | 23 + ...bot-229-013-local_variable_assignment].out | 41 + ...bot-229-016-local_variable_assignment].out | 41 + ...bot-229-018-local_variable_assignment].out | 41 + ...es.robot-231-016-local_variable_usage].out | 41 + ...es.robot-231-019-local_variable_usage].out | 41 + ...es.robot-231-021-local_variable_usage].out | 41 + ...[references.robot-236-021-an_argument].out | 23 + ...[references.robot-236-024-an_argument].out | 23 + ...[references.robot-236-027-an_argument].out | 23 + ...38-032-argument_usage_in_while_option].out | 23 + ...38-035-argument_usage_in_while_option].out | 23 + ...38-038-argument_usage_in_while_option].out | 23 + ...7-017-variable_definition_in_if_block].out | 32 + ...7-020-variable_definition_in_if_block].out | 32 + ...7-022-variable_definition_in_if_block].out | 32 + ...017-variable_definition_in_else_block].out | 32 + ...020-variable_definition_in_else_block].out | 32 + ...022-variable_definition_in_else_block].out | 32 + ...ferences.robot-253-016-variable_usage].out | 32 + ...ferences.robot-253-019-variable_usage].out | 32 + ...ferences.robot-253-021-variable_usage].out | 32 + ...[references.robot-258-021-an_argument].out | 23 + ...[references.robot-258-024-an_argument].out | 23 + ...[references.robot-258-027-an_argument].out | 5 + ...es.robot-261-014-local_variable_usage].out | 23 + ...ferences.robot-261-019-argument_usage].out | 23 + ...ferences.robot-261-021-argument_usage].out | 23 + ...ferences.robot-261-023-argument_usage].out | 23 + ...61-036-argument_usage_in_while_option].out | 23 + ...61-039-argument_usage_in_while_option].out | 23 + ...61-042-argument_usage_in_while_option].out | 23 + ...es.robot-274-031-local_variable_usage].out | 23 + ...es.robot-274-035-local_variable_usage].out | 23 + ...es.robot-274-039-local_variable_usage].out | 23 + ...nces.robot-281-039-variable_in_option].out | 23 + ...nces.robot-281-044-variable_in_option].out | 23 + ...nces.robot-281-048-variable_in_option].out | 23 + ...t_semantic_tokens.test[__init__.robot].out | 28 + ...t_semantic_tokens.test[bddstyle.robot].out | 293 + ...[code_action_show_documentation.robot].out | 823 + ..._tokens.test[document_highlight.robot].out | 948 + ...okens.test[duplicated_resources.robot].out | 148 + ...tic_tokens.test[external_libray.robot].out | 58 + ...mantic_tokens.test[foldingrange.robot].out | 358 + .../test_semantic_tokens.test[goto.robot].out | 1018 + ...test_semantic_tokens.test[hover.robot].out | 1483 + ...semantic_tokens.test[playground.robot].out | 128 + ...semantic_tokens.test[references.robot].out | 1608 + ...semantic_tokens.test[remotetest.robot].out | 23 + ...t_semantic_tokens.test[reserved.robot].out | 73 + ..._tokens.test[sematic_tokenizing.robot].out | 308 + ...ntic_tokens.test[setup_teardown.robot].out | 263 + ...ntic_tokens.test[signature_help.robot].out | 153 + ...st_semantic_tokens.test[symbols.robot].out | 218 + ..._semantic_tokens.test[templates.robot].out | 768 + ...semantic_tokens.test[templates2.robot].out | 373 + ..._semantic_tokens.test[variables.robot].out | 1123 + ...ens.test[versions-rf61-__init__.robot].out | 8 + ...versions-rf61-embedded_keywords.robot].out | 118 + ...versions-rf61-indexed_variables.robot].out | 33 + ...est[versions-rf61-jsonvariables.robot].out | 38 + ...ns.test[versions-rf61-sometasks.robot].out | 28 + ...ersions-rf61-sub_suite-__init__.robot].out | 13 + ...t[versions-rf61-sub_suite-first.robot].out | 23 + ...t[versions-rf61-suite_with_name.robot].out | 28 + ...kens.test[versions-rf70-vartest.robot].out | 333 + ...ns.test[versions-rf72-grouptest.robot].out | 58 + ...antic_tokens.test[very_big_file.robot].out | 92348 ++++++++++++++++ ..._help.robot-003-026-library_signature].out | 21 + ..._help.robot-003-028-library_signature].out | 21 + ..._help.robot-003-030-library_signature].out | 21 + ...robot-006-031-Suite_Setup_first_param].out | 18 + ...obot-006-036-Suite_Setup_second_param].out | 18 + ...lp.robot-012-034-first_param_resource].out | 18 + ...lp.robot-012-036-first_param_resource].out | 18 + ...lp.robot-012-038-first_param_resource].out | 18 + ...p.robot-012-044-second_param_resource].out | 18 + ...p.robot-012-046-second_param_resource].out | 18 + ...p.robot-012-047-second_param_resource].out | 18 + ...p.robot-012-052-second_param_resource].out | 18 + ...p.robot-012-054-second_param_resource].out | 18 + ...p.robot-012-056-second_param_resource].out | 18 + ..._help.robot-012-059-no_param_resource].out | 18 + ..._help.robot-012-062-no_param_resource].out | 18 + ..._help.robot-012-065-no_param_resource].out | 18 + ...ure_help.robot-017-020-without_params].out | 18 + ...nature_help.robot-019-036-with_params].out | 18 + ...ature_help.robot-019-041-second_param].out | 18 + ...signature_help.robot-019-046-no_param].out | 18 + ...gnature_help.robot-024-030-int_params].out | 18 + ...nature_help.robot-024-035-bool_params].out | 18 + ...nature_help.robot-024-037-bool_params].out | 18 + ...nature_help.robot-024-038-bool_params].out | 18 + ...nature_help.robot-024-043-enum_params].out | 18 + ...ignature_help.robot-024-046-no_params].out | 18 + ..._help.robot-033-018-BuiltIn_no_params].out | 12 + .../rf73/test_workspace_symbols.test[].out | 14013 +++ .../rf73/test_workspace_symbols.test[as].out | 7816 ++ .../test_workspace_symbols.test[first].out | 676 + 1514 files changed, 179035 insertions(+), 42 deletions(-) create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-016-user_library_by_path_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-031-user_library_by_path_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-005-046-user_library_by_path_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-016-user_library_with_arguments_and_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-020-user_library_with_arguments_and_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-014-023-user_library_with_arguments_and_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-015-keyword_call_from_built-in_library_wit__d7d16e6184.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-026-keyword_call_from_built-in_library_wit__cd42b3cd81.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-016-036-keyword_call_from_built-in_library_wit__028749342f.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-014-keyword_call_from_built-in_library_in_Test_Setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-021-keyword_call_from_built-in_library_in_Test_Setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-018-027-keyword_call_from_built-in_library_in_Test_Setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-015-keyword_call_from_built-in_library_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-022-keyword_call_from_built-in_library_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-028-028-keyword_call_from_built-in_library_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-018-keyword_call_from_built-in_library_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-029-keyword_call_from_built-in_library_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-030-039-keyword_call_from_built-in_library_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-004-keyword_call_from_built-in_library_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-015-keyword_call_from_built-in_library_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-035-025-keyword_call_from_built-in_library_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-018-keyword_call_from_built-in_library_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-025-keyword_call_from_built-in_library_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-040-031-keyword_call_from_built-in_library_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-018-keyword_call_from_built-in_library_wit__d984cab273.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-029-keyword_call_from_built-in_library_wit__fb1f1a56e9.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-046-039-keyword_call_from_built-in_library_wit__14f1104533.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-017-keyword_call_from_user_library_with_na__efa1e89fe7.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-030-keyword_call_from_user_library_with_na__8a545faa50.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-052-043-keyword_call_from_user_library_with_na__08fdc650a6.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-018-keyword_call_from_user_library_with_na__2da3a7e0a5.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-030-keyword_call_from_user_library_with_na__a1c5878f20.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-055-042-keyword_call_from_user_library_with_na__c2ef0179a4.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-015-keyword_call_with_embedded_arguments_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-029-keyword_call_with_embedded_arguments_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-061-043-keyword_call_with_embedded_arguments_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-018-keyword_call_with_embedded_arguments_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-034-keyword_call_with_embedded_arguments_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-063-049-keyword_call_with_embedded_arguments_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-004-keyword_call_normal_arguments_in_test_case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-010-keyword_call_normal_arguments_in_test_case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-065-015-keyword_call_normal_arguments_in_test_case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-004-keyword_call_embedded_arguments_in_test_case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-019-keyword_call_embedded_arguments_in_test_case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-067-033-keyword_call_embedded_arguments_in_test_case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-004-keyword_call_with_embedded_arguments_and_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-019-keyword_call_with_embedded_arguments_and_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-076-034-keyword_call_with_embedded_arguments_and_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-031-a_variable_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-033-a_variable_with_emoji].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out create mode 100644 tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out diff --git a/hatch.toml b/hatch.toml index c22835a4..97b3339f 100644 --- a/hatch.toml +++ b/hatch.toml @@ -46,22 +46,12 @@ generate-tmlanguage = "python ./scripts/generate_tmlanguage.py" python = "3.13" extra-dependencies = ["robotframework==7.2rc1"] -[envs.rfmaster313] -python = "3.13" -extra-dependencies = [ - "robotframework @ git+https://github.com/robotframework/robotframework.git", -] - [envs.rfmaster] python = "3.12" extra-dependencies = [ "robotframework @ git+https://github.com/robotframework/robotframework.git", ] -[envs.pypy] -python = "pypy3.10" -extra-dependencies = ["robotframework==6.0"] - [envs.rfdevel] python = "3.11" post-install-commands = ["pip install -U -e {root:uri}/../robotframework"] @@ -75,31 +65,34 @@ python = "3.8" [[envs.devel.matrix]] python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] -rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"] +rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"] [envs.devel.overrides] matrix.rf.dependencies = [ - { value = "robotframework>=4.1.0, <5.0", if = [ + { value = "robotframework~=4.1.0", if = [ "rf41", ] }, - { value = "robotframework>=5.0.0, <6.0", if = [ + { value = "robotframework~=5.0.0", if = [ "rf50", ] }, - { value = "robotframework>6.0.0, <6.1", if = [ + { value = "robotframework~=6.0.0", if = [ "rf60", ] }, - { value = "robotframework>=6.1, <7.0", if = [ + { value = "robotframework~=6.1.0", if = [ "rf61", ] }, - { value = "robotframework>=7.0, <7.1", if = [ + { value = "robotframework~=7.0.0", if = [ "rf70", ] }, - { value = "robotframework>=7.1, <7.2", if = [ + { value = "robotframework~=7.1.0", if = [ "rf71", ] }, - { value = "robotframework>=7.2, <7.3", if = [ + { value = "robotframework~=7.2.0", if = [ "rf72", ] }, + { value = "robotframework~=7.3.0", if = [ + "rf73", + ] }, ] [envs.hatch-test] @@ -107,31 +100,34 @@ dependencies = ["pytest", "pytest-html", "pytest_asyncio>=0.23", "pyyaml"] pre-install-commands = ["python ./scripts/install_packages.py"] [[envs.test.matrix]] -rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72"] +rf = ["rf41", "rf50", "rf60", "rf61", "rf70", "rf71", "rf72", "rf73"] [envs.test.overrides] matrix.rf.dependencies = [ - { value = "robotframework>=4.1.0, <5.0", if = [ + { value = "robotframework~=4.1.0", if = [ "rf41", ] }, - { value = "robotframework>=5.0.0, <6.0", if = [ + { value = "robotframework~=5.0.0", if = [ "rf50", ] }, - { value = "robotframework>6.0.0, <6.1", if = [ + { value = "robotframework~=6.0.0", if = [ "rf60", ] }, - { value = "robotframework>=6.1, <7.0", if = [ + { value = "robotframework~=6.1.0", if = [ "rf61", ] }, - { value = "robotframework>=7.0, <7.1", if = [ + { value = "robotframework~=7.0.0", if = [ "rf70", ] }, - { value = "robotframework>=7.1, <7.2", if = [ + { value = "robotframework~=7.1.0", if = [ "rf71", ] }, - { value = "robotframework>=7.2, <7.3", if = [ + { value = "robotframework~=7.2.0", if = [ "rf72", ] }, + { value = "robotframework~=7.3.0", if = [ + "rf73", + ] }, ] [envs.lint] @@ -179,7 +175,7 @@ install-bundled-editable = "python ./scripts/install_bundled_editable.py" [envs.hatch-static-analysis] -installer="uv" +installer = "uv" dependencies = ["ruff"] [envs.hatch-static-analysis.scripts] diff --git a/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py b/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py index 34a5971a..cb98046d 100644 --- a/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py +++ b/packages/language_server/src/robotcode/language_server/robotframework/parts/semantic_tokens.py @@ -471,7 +471,9 @@ def generate_sem_sub_tokens( sem_mod.add(RobotSemTokenModifiers.BUILTIN) if kw_doc is not None and kw_doc.is_embedded and kw_doc.matcher.embedded_arguments: - if get_robot_version() >= (6, 0): + if get_robot_version() >= (7, 3): + m = kw_doc.matcher.embedded_arguments.name.fullmatch(kw) + elif get_robot_version() >= (6, 0): m = kw_doc.matcher.embedded_arguments.match(kw) else: m = kw_doc.matcher.embedded_arguments.name.match(kw) diff --git a/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py b/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py index f76ad2e3..0290a5c1 100644 --- a/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py +++ b/packages/robot/src/robotcode/robot/diagnostics/keyword_finder.py @@ -306,17 +306,32 @@ def _is_worse_match_than_others( return True return False - def _is_better_match( - self, - candidate: Tuple[Optional[LibraryEntry], KeywordDoc], - other: Tuple[Optional[LibraryEntry], KeywordDoc], - ) -> bool: - return ( - other[1].matcher.embedded_arguments is not None - and candidate[1].matcher.embedded_arguments is not None - and other[1].matcher.embedded_arguments.match(candidate[1].name) is not None - and candidate[1].matcher.embedded_arguments.match(other[1].name) is None - ) + if get_robot_version() >= (7, 3): + + def _is_better_match( + self, + candidate: Tuple[Optional[LibraryEntry], KeywordDoc], + other: Tuple[Optional[LibraryEntry], KeywordDoc], + ) -> bool: + return ( + other[1].matcher.embedded_arguments is not None + and candidate[1].matcher.embedded_arguments is not None + and other[1].matcher.embedded_arguments.matches(candidate[1].name) + and not candidate[1].matcher.embedded_arguments.matches(other[1].name) + ) + else: + + def _is_better_match( + self, + candidate: Tuple[Optional[LibraryEntry], KeywordDoc], + other: Tuple[Optional[LibraryEntry], KeywordDoc], + ) -> bool: + return ( + other[1].matcher.embedded_arguments is not None + and candidate[1].matcher.embedded_arguments is not None + and other[1].matcher.embedded_arguments.match(candidate[1].name) is not None + and candidate[1].matcher.embedded_arguments.match(other[1].name) is None + ) @functools.cached_property def _resource_imports(self) -> List[ResourceEntry]: diff --git a/packages/robot/src/robotcode/robot/diagnostics/library_doc.py b/packages/robot/src/robotcode/robot/diagnostics/library_doc.py index 3eb6ec76..d4cbb2cd 100644 --- a/packages/robot/src/robotcode/robot/diagnostics/library_doc.py +++ b/packages/robot/src/robotcode/robot/diagnostics/library_doc.py @@ -199,7 +199,7 @@ def convert_from_rest(text: str) -> str: if get_robot_version() >= (6, 0): - # monkey patch robot framework + # monkey patch robot framework for performance reasons _old_from_name = EmbeddedArguments.from_name @functools.lru_cache(maxsize=8192) @@ -214,8 +214,14 @@ def _get_embedded_arguments(name: str) -> Any: except (VariableError, DataError): return () - def _match_embedded(embedded_arguments: EmbeddedArguments, name: str) -> bool: - return embedded_arguments.match(name) is not None + if get_robot_version() >= (7, 3): + + def _match_embedded(embedded_arguments: EmbeddedArguments, name: str) -> bool: + return bool(embedded_arguments.matches(name)) + else: + + def _match_embedded(embedded_arguments: EmbeddedArguments, name: str) -> bool: + return embedded_arguments.match(name) is not None else: diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-016-built-in_library].out new file mode 100644 index 00000000..1504a7b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-021-built-in_library].out new file mode 100644 index 00000000..f32771f2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-001-026-built-in_library].out new file mode 100644 index 00000000..a64ab61b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-016-user_library].out new file mode 100644 index 00000000..8930c4ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-021-user_library].out new file mode 100644 index 00000000..ba542b02 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-003-026-user_library].out new file mode 100644 index 00000000..13c9ee64 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..8565c17f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..5cc0a156 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..319676ee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-016-resource].out new file mode 100644 index 00000000..9357804d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-027-resource].out new file mode 100644 index 00000000..12e549df --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-008-037-resource].out new file mode 100644 index 00000000..9b783b45 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-016-resource_by_path_with_variable].out new file mode 100644 index 00000000..5dc1c782 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-038-resource_by_path_with_variable].out new file mode 100644 index 00000000..59117805 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-010-060-resource_by_path_with_variable].out new file mode 100644 index 00000000..4846142e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-016-user_library_with_arguments].out new file mode 100644 index 00000000..72a9d47f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-020-user_library_with_arguments].out new file mode 100644 index 00000000..586bdb5b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-012-023-user_library_with_arguments].out new file mode 100644 index 00000000..4dba5b93 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..053442a2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..4b1fda2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..79f7c5c9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..3477196d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..bcb76143 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..b9499fe8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..0cd02206 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..10d0f6a7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..844a52d3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..cc722490 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..debf347d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..4fe51a8f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..0ae96fa9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..fd7b420b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..97bd64cf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-004-keyword_from_built-in_library].out new file mode 100644 index 00000000..014307b3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-005-keyword_from_built-in_library].out new file mode 100644 index 00000000..cdab02c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-032-006-keyword_from_built-in_library].out new file mode 100644 index 00000000..3ac6327e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..62346e41 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..bbb21d34 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..7ada3ac0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..baacac5f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..4005b8f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..5ed9a67f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..da498211 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..d28ed80d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..fac4cef2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..9f6ec055 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..e7ef8c56 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..3bbde10b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..592bf642 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..2ce06bbf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..2458d972 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..72da6608 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..07a54390 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..55848b63 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..30f741ff --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..3819c5dc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..ddf746b1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..a067ba9c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..118d6a50 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..2bd50599 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..6b4f431b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..b1b48e9c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..a7442daf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-004-keyword_call_with_embedded_arguments].out new file mode 100644 index 00000000..f536746d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-014-keyword_call_with_embedded_arguments].out new file mode 100644 index 00000000..c8f418f7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-070-024-keyword_call_with_embedded_arguments].out new file mode 100644 index 00000000..365aed4d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..92f1ee05 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..1c9bac0e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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 00000000..c53172ec --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-004-error_multiple_keywords].out new file mode 100644 index 00000000..f94f815a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-014-error_multiple_keywords].out new file mode 100644 index 00000000..5c7b2c0e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-079-024-error_multiple_keywords].out new file mode 100644 index 00000000..65b31366 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-004-error_multiple_keywords_ignored].out new file mode 100644 index 00000000..67291f8f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-014-error_multiple_keywords_ignored].out new file mode 100644 index 00000000..38365fe5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-081-024-error_multiple_keywords_ignored].out new file mode 100644 index 00000000..78437caf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/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/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out new file mode 100644 index 00000000..19416e6f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-004-a_keyword_with_emoji_1].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 86 + name: a keyword with emoji 1 +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out new file mode 100644 index 00000000..7ab3e213 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-006-a_keyword_with_emoji_1].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 86 + name: a keyword with emoji 1 +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out new file mode 100644 index 00000000..ff01b37d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-086-007-a_keyword_with_emoji_1].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 86 + name: a keyword with emoji 1 +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out new file mode 100644 index 00000000..4c2a39d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-004-a_keyword_with_emoji_2].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 88 + name: a keyword with emoji 2 +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out new file mode 100644 index 00000000..16e37438 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-006-a_keyword_with_emoji_2].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 88 + name: a keyword with emoji 2 +result: +- !CodeAction + command: + arguments: + - + command: robotcode.showDocumentation + title: Open Documentation + data: null + diagnostics: null + disabled: null + edit: null + is_preferred: null + kind: source + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out new file mode 100644 index 00000000..aa632106 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-088-007-a_keyword_with_emoji_2].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 88 + name: a keyword with emoji 2 +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out new file mode 100644 index 00000000..ed4b332e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-001-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 91 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out new file mode 100644 index 00000000..b4022136 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-010-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 91 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out new file mode 100644 index 00000000..66a224dd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-091-019-keyword_definition_with_embedded_arguments].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 91 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out new file mode 100644 index 00000000..1b52c697 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-001-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 95 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out new file mode 100644 index 00000000..a2319568 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-006-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 95 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out new file mode 100644 index 00000000..9e02d743 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-095-011-keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 11 + line: 95 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out new file mode 100644 index 00000000..d93f5bf1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-004-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 4 + line: 98 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out new file mode 100644 index 00000000..db84f969 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-005-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 5 + line: 98 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out new file mode 100644 index 00000000..ebb8ea44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-098-006-keyword_call_in_keyword_definition].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 6 + line: 98 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out new file mode 100644 index 00000000..54198f8b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-001-keyword_definition_with_embedded_argum__b7a9e9c57a.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 1 + line: 101 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out new file mode 100644 index 00000000..a6883e80 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-010-keyword_definition_with_embedded_argum__ade1039d68.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 10 + line: 101 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out new file mode 100644 index 00000000..4b692464 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_code_action_show_documentation.test[code_action_show_documentation.robot-101-019-keyword_definition_with_embedded_argum__f1aa26fade.out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 19 + line: 101 + 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 + title: Open Documentation diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out new file mode 100644 index 00000000..9abeee52 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-018-Variable_in_library_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 18 + line: 2 + name: Variable in library import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out new file mode 100644 index 00000000..df7e8cb9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-021-Variable_in_library_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 21 + line: 2 + name: Variable in library import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out new file mode 100644 index 00000000..9c0de096 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-002-023-Variable_in_library_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 23 + line: 2 + name: Variable in library import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out new file mode 100644 index 00000000..2f595c52 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-018-Variable_in_variables_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 18 + line: 4 + name: Variable in variables import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out new file mode 100644 index 00000000..32da8b18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-021-Variable_in_variables_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 21 + line: 4 + name: Variable in variables import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out new file mode 100644 index 00000000..face0403 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-004-023-Variable_in_variables_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 23 + line: 4 + name: Variable in variables import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out new file mode 100644 index 00000000..f13ac59b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-018-Variable_in_resource_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 18 + line: 6 + name: Variable in resource import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out new file mode 100644 index 00000000..af9152ec --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-021-Variable_in_resource_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 21 + line: 6 + name: Variable in resource import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out new file mode 100644 index 00000000..f99f50bd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-023-Variable_in_resource_import_path].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 23 + line: 6 + name: Variable in resource import path +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 2 + start: + character: 18 + line: 2 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out new file mode 100644 index 00000000..01e72cfb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-029-namespace_reference_with_resource].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 29 + line: 6 + name: namespace reference with resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 61 + line: 6 + start: + character: 16 + line: 6 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 70 + start: + character: 4 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out new file mode 100644 index 00000000..fe0e1adf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-040-namespace_reference_with_resource].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 40 + line: 6 + name: namespace reference with resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 61 + line: 6 + start: + character: 16 + line: 6 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 70 + start: + character: 4 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out new file mode 100644 index 00000000..91e3f250 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-006-051-namespace_reference_with_resource].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 51 + line: 6 + name: namespace reference with resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 61 + line: 6 + start: + character: 16 + line: 6 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 70 + start: + character: 4 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out new file mode 100644 index 00000000..aee721c2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-036-Variable_in_library_params].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 36 + line: 10 + name: Variable in library params +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 36 + line: 10 + start: + character: 36 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out new file mode 100644 index 00000000..ce8a824b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-041-Variable_in_library_params].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 41 + line: 10 + name: Variable in library params +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 45 + line: 10 + start: + character: 38 + line: 10 +- !DocumentHighlight + kind: 3 + range: + end: + character: 9 + line: 22 + start: + character: 2 + line: 22 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 63 + start: + character: 37 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out new file mode 100644 index 00000000..a3ba374c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-045-Variable_in_library_params].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 45 + line: 10 + name: Variable in library params +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 45 + line: 10 + start: + character: 38 + line: 10 +- !DocumentHighlight + kind: 3 + range: + end: + character: 9 + line: 22 + start: + character: 2 + line: 22 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 63 + start: + character: 37 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out new file mode 100644 index 00000000..d90df60a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-063-namespace_references_with_alias].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 63 + line: 10 + name: namespace references with alias +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 24 + line: 10 + start: + character: 16 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 10 + start: + character: 63 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 25 + line: 60 + start: + character: 18 + line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out new file mode 100644 index 00000000..a1fa36c8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-066-namespace_references_with_alias].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 66 + line: 10 + name: namespace references with alias +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 24 + line: 10 + start: + character: 16 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 10 + start: + character: 63 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 25 + line: 60 + start: + character: 18 + line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out new file mode 100644 index 00000000..5179ecc5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-010-069-namespace_references_with_alias].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 69 + line: 10 + name: namespace references with alias +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 24 + line: 10 + start: + character: 16 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 10 + start: + character: 63 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 25 + line: 60 + start: + character: 18 + line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..96501d45 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-023-suite_fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 23 + line: 14 + name: suite fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..9ad013dc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-030-suite_fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 30 + line: 14 + name: suite fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..472a24c6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-014-036-suite_fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 36 + line: 14 + name: suite fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..5de7e77f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-014-test_fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 14 + line: 16 + name: test fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..015a4e88 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-021-test_fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 21 + line: 16 + name: test fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..8ccbe485 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-016-027-test_fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 27 + line: 16 + name: test fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out new file mode 100644 index 00000000..f4996d18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-002-simple_variable].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 2 + line: 20 + name: simple variable +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out new file mode 100644 index 00000000..201ff780 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-004-simple_variable].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 4 + line: 20 + name: simple variable +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out new file mode 100644 index 00000000..9ad8b1a5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-020-006-simple_variable].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 6 + line: 20 + name: simple variable +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out new file mode 100644 index 00000000..e061471b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-002-another_simple_var].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 2 + line: 22 + name: another simple var +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 45 + line: 10 + start: + character: 38 + line: 10 +- !DocumentHighlight + kind: 3 + range: + end: + character: 9 + line: 22 + start: + character: 2 + line: 22 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 63 + start: + character: 37 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out new file mode 100644 index 00000000..fa561199 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-005-another_simple_var].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 5 + line: 22 + name: another simple var +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 45 + line: 10 + start: + character: 38 + line: 10 +- !DocumentHighlight + kind: 3 + range: + end: + character: 9 + line: 22 + start: + character: 2 + line: 22 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 63 + start: + character: 37 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out new file mode 100644 index 00000000..21b8a8c1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-022-007-another_simple_var].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 7 + line: 22 + name: another simple var +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 45 + line: 10 + start: + character: 38 + line: 10 +- !DocumentHighlight + kind: 3 + range: + end: + character: 9 + line: 22 + start: + character: 2 + line: 22 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 63 + start: + character: 37 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out new file mode 100644 index 00000000..bbbed9f1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-015-fixture_keyword_call].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 15 + line: 30 + name: fixture keyword call +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out new file mode 100644 index 00000000..fcb2e079 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-022-fixture_keyword_call].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 22 + line: 30 + name: fixture keyword call +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out new file mode 100644 index 00000000..945a82e3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-030-028-fixture_keyword_call].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 28 + line: 30 + name: fixture keyword call +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..14a32ce2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-026-fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 26 + line: 32 + name: fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..4f3a2670 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-033-fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 33 + line: 32 + name: fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..592246f2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-032-039-fixture_keyword_call_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 39 + line: 32 + name: fixture keyword call with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out new file mode 100644 index 00000000..dbec8d30 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-004-simple_keyword_call].out @@ -0,0 +1,221 @@ +data: !GeneratedTestData + character: 4 + line: 34 + name: simple keyword call +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 88 + start: + character: 8 + line: 88 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 91 + start: + character: 8 + line: 91 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 96 + start: + character: 8 + line: 96 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 99 + start: + character: 8 + line: 99 +- !DocumentHighlight + kind: 1 + range: + end: + character: 19 + line: 102 + start: + character: 16 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 51 + line: 102 + start: + character: 48 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 102 + start: + character: 67 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 106 + start: + character: 14 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 47 + line: 106 + start: + character: 44 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 66 + line: 106 + start: + character: 63 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 118 + start: + character: 4 + line: 118 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 136 + start: + character: 4 + line: 136 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 138 + start: + character: 4 + line: 138 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 140 + start: + character: 4 + line: 140 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 166 + start: + character: 4 + line: 166 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 179 + start: + character: 4 + line: 179 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out new file mode 100644 index 00000000..d25c5752 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-005-simple_keyword_call].out @@ -0,0 +1,221 @@ +data: !GeneratedTestData + character: 5 + line: 34 + name: simple keyword call +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 88 + start: + character: 8 + line: 88 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 91 + start: + character: 8 + line: 91 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 96 + start: + character: 8 + line: 96 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 99 + start: + character: 8 + line: 99 +- !DocumentHighlight + kind: 1 + range: + end: + character: 19 + line: 102 + start: + character: 16 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 51 + line: 102 + start: + character: 48 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 102 + start: + character: 67 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 106 + start: + character: 14 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 47 + line: 106 + start: + character: 44 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 66 + line: 106 + start: + character: 63 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 118 + start: + character: 4 + line: 118 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 136 + start: + character: 4 + line: 136 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 138 + start: + character: 4 + line: 138 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 140 + start: + character: 4 + line: 140 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 166 + start: + character: 4 + line: 166 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 179 + start: + character: 4 + line: 179 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out new file mode 100644 index 00000000..db97b358 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-034-006-simple_keyword_call].out @@ -0,0 +1,221 @@ +data: !GeneratedTestData + character: 6 + line: 34 + name: simple keyword call +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 88 + start: + character: 8 + line: 88 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 91 + start: + character: 8 + line: 91 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 96 + start: + character: 8 + line: 96 +- !DocumentHighlight + kind: 1 + range: + end: + character: 11 + line: 99 + start: + character: 8 + line: 99 +- !DocumentHighlight + kind: 1 + range: + end: + character: 19 + line: 102 + start: + character: 16 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 51 + line: 102 + start: + character: 48 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 102 + start: + character: 67 + line: 102 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 106 + start: + character: 14 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 47 + line: 106 + start: + character: 44 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 66 + line: 106 + start: + character: 63 + line: 106 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 118 + start: + character: 4 + line: 118 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 136 + start: + character: 4 + line: 136 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 138 + start: + character: 4 + line: 138 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 140 + start: + character: 4 + line: 140 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 166 + start: + character: 4 + line: 166 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 +- !DocumentHighlight + kind: 1 + range: + end: + character: 7 + line: 179 + start: + character: 4 + line: 179 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out new file mode 100644 index 00000000..ea633472 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-004-multiple_references].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 4 + line: 36 + name: multiple references +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out new file mode 100644 index 00000000..84daf7e1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-011-multiple_references].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 11 + line: 36 + name: multiple references +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out new file mode 100644 index 00000000..d94da638 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-036-017-multiple_references].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 17 + line: 36 + name: multiple references +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out new file mode 100644 index 00000000..b897f150 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-012-multiple_references_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 12 + line: 38 + name: multiple references with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out new file mode 100644 index 00000000..d539667e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-019-multiple_references_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 19 + line: 38 + name: multiple references with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out new file mode 100644 index 00000000..44c4c1f2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-025-multiple_references_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 25 + line: 38 + name: multiple references with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out new file mode 100644 index 00000000..907cedb7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-035-multiple_variables].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 35 + line: 38 + name: multiple variables +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out new file mode 100644 index 00000000..753f44ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-037-multiple_variables].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 37 + line: 38 + name: multiple variables +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out new file mode 100644 index 00000000..17df9ae4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-038-039-multiple_variables].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 39 + line: 38 + name: multiple variables +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out new file mode 100644 index 00000000..6a1cdd45 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-013-a_var_from_resource].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 13 + line: 41 + name: a var from resource +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 41 + start: + character: 13 + line: 41 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out new file mode 100644 index 00000000..72a56fcf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-022-a_var_from_resource].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 22 + line: 41 + name: a var from resource +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 41 + start: + character: 13 + line: 41 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out new file mode 100644 index 00000000..480f271e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-041-030-a_var_from_resource].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 30 + line: 41 + name: a var from resource +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 41 + start: + character: 13 + line: 41 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out new file mode 100644 index 00000000..daad2e11 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-018-template_keyword].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 18 + line: 45 + name: template keyword +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out new file mode 100644 index 00000000..577f54d5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-025-template_keyword].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 25 + line: 45 + name: template keyword +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out new file mode 100644 index 00000000..c33a2c57 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-045-031-template_keyword].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 31 + line: 45 + name: template keyword +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out new file mode 100644 index 00000000..636ab737 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-026-template_keyword_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 26 + line: 51 + name: template keyword with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out new file mode 100644 index 00000000..bf6ac706 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-033-template_keyword_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 33 + line: 51 + name: template keyword with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out new file mode 100644 index 00000000..cd2117b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-051-039-template_keyword_with_namespace].out @@ -0,0 +1,77 @@ +data: !GeneratedTestData + character: 39 + line: 51 + name: template keyword with namespace +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 37 + line: 14 + start: + character: 23 + line: 14 +- !DocumentHighlight + kind: 1 + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 +- !DocumentHighlight + kind: 1 + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 +- !DocumentHighlight + kind: 1 + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 +- !DocumentHighlight + kind: 1 + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 +- !DocumentHighlight + kind: 1 + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 +- !DocumentHighlight + kind: 1 + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out new file mode 100644 index 00000000..27793128 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-006-Keyword_assignement].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 6 + line: 57 + name: Keyword assignement +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 57 + start: + character: 6 + line: 57 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 59 + start: + character: 25 + line: 59 +- !DocumentHighlight + kind: 2 + range: + end: + character: 12 + line: 60 + start: + character: 6 + line: 60 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 63 + start: + character: 25 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out new file mode 100644 index 00000000..177b3d26 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-009-Keyword_assignement].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 9 + line: 57 + name: Keyword assignement +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 57 + start: + character: 6 + line: 57 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 59 + start: + character: 25 + line: 59 +- !DocumentHighlight + kind: 2 + range: + end: + character: 12 + line: 60 + start: + character: 6 + line: 60 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 63 + start: + character: 25 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out new file mode 100644 index 00000000..a5674ac0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-057-011-Keyword_assignement].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 11 + line: 57 + name: Keyword assignement +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 57 + start: + character: 6 + line: 57 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 59 + start: + character: 25 + line: 59 +- !DocumentHighlight + kind: 2 + range: + end: + character: 12 + line: 60 + start: + character: 6 + line: 60 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 63 + start: + character: 25 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out new file mode 100644 index 00000000..6c5259f9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-006-Keyword_assignment_with_equals_sign].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 6 + line: 60 + name: Keyword assignment with equals sign +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 57 + start: + character: 6 + line: 57 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 59 + start: + character: 25 + line: 59 +- !DocumentHighlight + kind: 2 + range: + end: + character: 12 + line: 60 + start: + character: 6 + line: 60 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 63 + start: + character: 25 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out new file mode 100644 index 00000000..78ca7617 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-009-Keyword_assignment_with_equals_sign].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 9 + line: 60 + name: Keyword assignment with equals sign +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 57 + start: + character: 6 + line: 57 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 59 + start: + character: 25 + line: 59 +- !DocumentHighlight + kind: 2 + range: + end: + character: 12 + line: 60 + start: + character: 6 + line: 60 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 63 + start: + character: 25 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out new file mode 100644 index 00000000..929d6f7f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-011-Keyword_assignment_with_equals_sign].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 11 + line: 60 + name: Keyword assignment with equals sign +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 57 + start: + character: 6 + line: 57 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 59 + start: + character: 25 + line: 59 +- !DocumentHighlight + kind: 2 + range: + end: + character: 12 + line: 60 + start: + character: 6 + line: 60 +- !DocumentHighlight + kind: 2 + range: + end: + character: 31 + line: 63 + start: + character: 25 + line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out new file mode 100644 index 00000000..7131a734 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-018-namespace_reference_with_alias].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 18 + line: 60 + name: namespace reference with alias +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 24 + line: 10 + start: + character: 16 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 10 + start: + character: 63 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 25 + line: 60 + start: + character: 18 + line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out new file mode 100644 index 00000000..82f738f0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-021-namespace_reference_with_alias].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 21 + line: 60 + name: namespace reference with alias +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 24 + line: 10 + start: + character: 16 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 10 + start: + character: 63 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 25 + line: 60 + start: + character: 18 + line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out new file mode 100644 index 00000000..b8651352 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-060-024-namespace_reference_with_alias].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 24 + line: 60 + name: namespace reference with alias +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 24 + line: 10 + start: + character: 16 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 70 + line: 10 + start: + character: 63 + line: 10 +- !DocumentHighlight + kind: 1 + range: + end: + character: 25 + line: 60 + start: + character: 18 + line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out new file mode 100644 index 00000000..a5ccb1d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-004-namespace_reference_with_resource].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 4 + line: 70 + name: namespace reference with resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 61 + line: 6 + start: + character: 16 + line: 6 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 70 + start: + character: 4 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out new file mode 100644 index 00000000..bf443043 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-010-namespace_reference_with_resource].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 10 + line: 70 + name: namespace reference with resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 61 + line: 6 + start: + character: 16 + line: 6 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 70 + start: + character: 4 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out new file mode 100644 index 00000000..87d68c97 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-016-namespace_reference_with_resource].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 16 + line: 70 + name: namespace reference with resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 61 + line: 6 + start: + character: 16 + line: 6 +- !DocumentHighlight + kind: 1 + range: + end: + character: 17 + line: 70 + start: + character: 4 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out new file mode 100644 index 00000000..4c9fb410 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-041-short_keyword_argument].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 41 + line: 70 + name: short keyword argument +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 42 + line: 70 + start: + character: 41 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out new file mode 100644 index 00000000..6e3ce406 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-048-keyword_argument_with_spaces].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 48 + line: 70 + name: keyword argument with spaces +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 59 + line: 70 + start: + character: 48 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out new file mode 100644 index 00000000..52d9903e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-053-keyword_argument_with_spaces].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 53 + line: 70 + name: keyword argument with spaces +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 59 + line: 70 + start: + character: 48 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out new file mode 100644 index 00000000..6bad289b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-058-keyword_argument_with_spaces].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 58 + line: 70 + name: keyword argument with spaces +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 59 + line: 70 + start: + character: 48 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out new file mode 100644 index 00000000..d80b64a2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-066-another_keyword_argument].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 66 + line: 70 + name: another keyword argument +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 78 + line: 70 + start: + character: 66 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out new file mode 100644 index 00000000..08ed3283 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-072-another_keyword_argument].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 72 + line: 70 + name: another keyword argument +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 78 + line: 70 + start: + character: 66 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out new file mode 100644 index 00000000..671f52a8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-070-077-another_keyword_argument].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 77 + line: 70 + name: another keyword argument +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 78 + line: 70 + start: + character: 66 + line: 70 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out new file mode 100644 index 00000000..46314f44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-004-namespace_reference_from_resource].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 4 + line: 75 + name: namespace reference from resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 15 + line: 75 + start: + character: 4 + line: 75 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out new file mode 100644 index 00000000..b4edab49 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-009-namespace_reference_from_resource].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 9 + line: 75 + name: namespace reference from resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 15 + line: 75 + start: + character: 4 + line: 75 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out new file mode 100644 index 00000000..11976a0f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-075-014-namespace_reference_from_resource].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 14 + line: 75 + name: namespace reference from resource +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 15 + line: 75 + start: + character: 4 + line: 75 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out new file mode 100644 index 00000000..e2d9ae99 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-004-a_keyword_with_emoji_1].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 4 + line: 80 + name: a keyword with emoji 1 +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 80 + start: + character: 4 + line: 80 +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 82 + start: + character: 4 + line: 82 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out new file mode 100644 index 00000000..bb265637 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-080-005-a_keyword_with_emoji_1].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 5 + line: 80 + name: a keyword with emoji 1 +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 80 + start: + character: 4 + line: 80 +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 82 + start: + character: 4 + line: 82 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out new file mode 100644 index 00000000..547914f6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-004-a_keyword_with_emoji_2].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 4 + line: 82 + name: a keyword with emoji 2 +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 80 + start: + character: 4 + line: 80 +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 82 + start: + character: 4 + line: 82 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out new file mode 100644 index 00000000..f6adf43b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-082-005-a_keyword_with_emoji_2].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 5 + line: 82 + name: a keyword with emoji 2 +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 80 + start: + character: 4 + line: 80 +- !DocumentHighlight + kind: 1 + range: + end: + character: 6 + line: 82 + start: + character: 4 + line: 82 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out new file mode 100644 index 00000000..3f4dcf36 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-086-010-variable_in_if].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 10 + line: 86 + name: variable in if +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 24 + start: + character: 2 + line: 24 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 86 + start: + character: 10 + line: 86 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 94 + start: + character: 9 + line: 94 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 102 + start: + character: 10 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 106 + start: + character: 9 + line: 106 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 164 + start: + character: 50 + line: 164 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 169 + start: + character: 50 + line: 169 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out new file mode 100644 index 00000000..2b004193 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-089-017-variable_in_else_if].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 17 + line: 89 + name: variable in else if +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 25 + start: + character: 2 + line: 25 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 89 + start: + character: 17 + line: 89 +- !DocumentHighlight + kind: 2 + range: + end: + character: 17 + line: 97 + start: + character: 16 + line: 97 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 102 + start: + character: 42 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 106 + start: + character: 39 + line: 106 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out new file mode 100644 index 00000000..cf0f0fbc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-094-009-variable_in_if_expression].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 9 + line: 94 + name: variable in if expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 24 + start: + character: 2 + line: 24 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 86 + start: + character: 10 + line: 86 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 94 + start: + character: 9 + line: 94 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 102 + start: + character: 10 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 106 + start: + character: 9 + line: 106 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 164 + start: + character: 50 + line: 164 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 169 + start: + character: 50 + line: 169 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out new file mode 100644 index 00000000..0d223bd9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-097-016-variable_in_else_if_expression].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 16 + line: 97 + name: variable in else if expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 25 + start: + character: 2 + line: 25 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 89 + start: + character: 17 + line: 89 +- !DocumentHighlight + kind: 2 + range: + end: + character: 17 + line: 97 + start: + character: 16 + line: 97 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 102 + start: + character: 42 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 106 + start: + character: 39 + line: 106 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out new file mode 100644 index 00000000..6f90a103 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-010-variable_in_inline_if_expression].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 10 + line: 102 + name: variable in inline if expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 24 + start: + character: 2 + line: 24 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 86 + start: + character: 10 + line: 86 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 94 + start: + character: 9 + line: 94 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 102 + start: + character: 10 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 106 + start: + character: 9 + line: 106 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 164 + start: + character: 50 + line: 164 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 169 + start: + character: 50 + line: 169 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..92e62eee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-102-042-variable_in_inline_else_if_expression].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 42 + line: 102 + name: variable in inline else if expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 25 + start: + character: 2 + line: 25 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 89 + start: + character: 17 + line: 89 +- !DocumentHighlight + kind: 2 + range: + end: + character: 17 + line: 97 + start: + character: 16 + line: 97 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 102 + start: + character: 42 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 106 + start: + character: 39 + line: 106 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out new file mode 100644 index 00000000..ee651833 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-009-variable_in_inline_if_expression].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 9 + line: 106 + name: variable in inline if expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 24 + start: + character: 2 + line: 24 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 86 + start: + character: 10 + line: 86 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 94 + start: + character: 9 + line: 94 +- !DocumentHighlight + kind: 2 + range: + end: + character: 11 + line: 102 + start: + character: 10 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 10 + line: 106 + start: + character: 9 + line: 106 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 164 + start: + character: 50 + line: 164 +- !DocumentHighlight + kind: 2 + range: + end: + character: 51 + line: 169 + start: + character: 50 + line: 169 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..c74310b4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-106-039-variable_in_inline_else_if_expression].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 39 + line: 106 + name: variable in inline else if expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 3 + line: 25 + start: + character: 2 + line: 25 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 89 + start: + character: 17 + line: 89 +- !DocumentHighlight + kind: 2 + range: + end: + character: 17 + line: 97 + start: + character: 16 + line: 97 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 102 + start: + character: 42 + line: 102 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 106 + start: + character: 39 + line: 106 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out new file mode 100644 index 00000000..eb026ff4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-021-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 113 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 26 + line: 113 + start: + character: 21 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 118 + start: + character: 13 + line: 118 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out new file mode 100644 index 00000000..2de4c69d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-023-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 23 + line: 113 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 26 + line: 113 + start: + character: 21 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 118 + start: + character: 13 + line: 118 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out new file mode 100644 index 00000000..ca7caa7e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-025-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 25 + line: 113 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 26 + line: 113 + start: + character: 21 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 118 + start: + character: 13 + line: 118 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out new file mode 100644 index 00000000..cec0e937 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-030-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 30 + line: 113 + name: a default value +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out new file mode 100644 index 00000000..4221c4a1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-032-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 32 + line: 113 + name: a default value +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out new file mode 100644 index 00000000..92d8e0a9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-113-034-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 34 + line: 113 + name: a default value +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out new file mode 100644 index 00000000..3dbfceb3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-013-argument_usage].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 13 + line: 116 + name: argument usage +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 13 + line: 116 + start: + character: 13 + line: 116 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out new file mode 100644 index 00000000..2559341f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-116-014-argument_usage].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 14 + line: 116 + name: argument usage +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 14 + line: 116 + start: + character: 14 + line: 116 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out new file mode 100644 index 00000000..68823e86 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 118 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 26 + line: 113 + start: + character: 21 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 118 + start: + character: 13 + line: 118 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out new file mode 100644 index 00000000..06127bb0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-015-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 15 + line: 118 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 26 + line: 113 + start: + character: 21 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 118 + start: + character: 13 + line: 118 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out new file mode 100644 index 00000000..b4479236 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-118-017-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 17 + line: 118 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 26 + line: 113 + start: + character: 21 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 118 + start: + character: 13 + line: 118 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out new file mode 100644 index 00000000..4592984a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-021-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 122 + name: an argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 23 + line: 122 + start: + character: 21 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 15 + line: 126 + start: + character: 13 + line: 126 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out new file mode 100644 index 00000000..eee735fc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-022-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 22 + line: 122 + name: an argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 23 + line: 122 + start: + character: 21 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 15 + line: 126 + start: + character: 13 + line: 126 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out new file mode 100644 index 00000000..194656ad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-030-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 30 + line: 122 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 35 + line: 122 + start: + character: 30 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 128 + start: + character: 13 + line: 128 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out new file mode 100644 index 00000000..b772f14c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-032-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 32 + line: 122 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 35 + line: 122 + start: + character: 30 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 128 + start: + character: 13 + line: 128 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out new file mode 100644 index 00000000..595dab8c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-034-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 34 + line: 122 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 35 + line: 122 + start: + character: 30 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 128 + start: + character: 13 + line: 128 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out new file mode 100644 index 00000000..60853ead --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-039-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 39 + line: 122 + name: a default value +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out new file mode 100644 index 00000000..e06514c5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-041-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 41 + line: 122 + name: a default value +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out new file mode 100644 index 00000000..4c478f91 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-122-043-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 43 + line: 122 + name: a default value +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out new file mode 100644 index 00000000..7200abe0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 126 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 23 + line: 122 + start: + character: 21 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 15 + line: 126 + start: + character: 13 + line: 126 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out new file mode 100644 index 00000000..dffaaa67 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-126-014-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 14 + line: 126 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 23 + line: 122 + start: + character: 21 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 15 + line: 126 + start: + character: 13 + line: 126 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out new file mode 100644 index 00000000..2d99dfcc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 128 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 35 + line: 122 + start: + character: 30 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 128 + start: + character: 13 + line: 128 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out new file mode 100644 index 00000000..3a941644 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-015-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 15 + line: 128 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 35 + line: 122 + start: + character: 30 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 128 + start: + character: 13 + line: 128 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out new file mode 100644 index 00000000..48f21cd4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-128-017-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 17 + line: 128 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 35 + line: 122 + start: + character: 30 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 18 + line: 128 + start: + character: 13 + line: 128 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out new file mode 100644 index 00000000..a44f4d28 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-021-an_argument].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 21 + line: 132 + name: an argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 22 + line: 132 + start: + character: 21 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 132 + start: + character: 34 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 136 + start: + character: 13 + line: 136 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 143 + start: + character: 24 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 144 + start: + character: 23 + line: 144 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 146 + start: + character: 24 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out new file mode 100644 index 00000000..d981a9a5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-029-another_argument].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 29 + line: 132 + name: another argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 30 + line: 132 + start: + character: 29 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 48 + line: 132 + start: + character: 47 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 138 + start: + character: 13 + line: 138 +- !DocumentHighlight + kind: 2 + range: + end: + character: 52 + line: 143 + start: + character: 51 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 48 + line: 146 + start: + character: 47 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out new file mode 100644 index 00000000..1d4adfc3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-132-034-argument_usage_in_argument].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 34 + line: 132 + name: argument usage in argument +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 22 + line: 132 + start: + character: 21 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 132 + start: + character: 34 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 136 + start: + character: 13 + line: 136 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 143 + start: + character: 24 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 144 + start: + character: 23 + line: 144 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 146 + start: + character: 24 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out new file mode 100644 index 00000000..07ea9173 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-136-013-argument_usage].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 13 + line: 136 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 22 + line: 132 + start: + character: 21 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 132 + start: + character: 34 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 136 + start: + character: 13 + line: 136 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 143 + start: + character: 24 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 144 + start: + character: 23 + line: 144 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 146 + start: + character: 24 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out new file mode 100644 index 00000000..3974a54f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-138-013-argument_usage].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 13 + line: 138 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 30 + line: 132 + start: + character: 29 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 48 + line: 132 + start: + character: 47 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 138 + start: + character: 13 + line: 138 +- !DocumentHighlight + kind: 2 + range: + end: + character: 52 + line: 143 + start: + character: 51 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 48 + line: 146 + start: + character: 47 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out new file mode 100644 index 00000000..c953f3f3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-140-013-argument_usage].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 13 + line: 140 + name: argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 43 + line: 132 + start: + character: 42 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 140 + start: + character: 13 + line: 140 +- !DocumentHighlight + kind: 2 + range: + end: + character: 60 + line: 143 + start: + character: 59 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 52 + line: 144 + start: + character: 51 + line: 144 +- !DocumentHighlight + kind: 2 + range: + end: + character: 61 + line: 144 + start: + character: 60 + line: 144 +- !DocumentHighlight + kind: 2 + range: + end: + character: 58 + line: 146 + start: + character: 57 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out new file mode 100644 index 00000000..8f476fa7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-144-023-argument_usage_in_keyword_with_expression].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 23 + line: 144 + name: argument usage in keyword with expression +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 22 + line: 132 + start: + character: 21 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 132 + start: + character: 34 + line: 132 +- !DocumentHighlight + kind: 2 + range: + end: + character: 14 + line: 136 + start: + character: 13 + line: 136 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 143 + start: + character: 24 + line: 143 +- !DocumentHighlight + kind: 2 + range: + end: + character: 24 + line: 144 + start: + character: 23 + line: 144 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 146 + start: + character: 24 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out new file mode 100644 index 00000000..c7a56f44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-006-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 6 + line: 149 + name: Embedded keyword +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 149 + start: + character: 6 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 151 + start: + character: 19 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out new file mode 100644 index 00000000..ca474b4b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-009-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 9 + line: 149 + name: Embedded keyword +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 149 + start: + character: 6 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 151 + start: + character: 19 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out new file mode 100644 index 00000000..8593a5cf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-149-011-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 11 + line: 149 + name: Embedded keyword +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 149 + start: + character: 6 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 151 + start: + character: 19 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out new file mode 100644 index 00000000..0029bdce --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-019-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 19 + line: 151 + name: embedded argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 149 + start: + character: 6 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 151 + start: + character: 19 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out new file mode 100644 index 00000000..cfc3064e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-022-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 22 + line: 151 + name: embedded argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 149 + start: + character: 6 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 151 + start: + character: 19 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out new file mode 100644 index 00000000..70036dcf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-024-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 24 + line: 151 + name: embedded argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 12 + line: 149 + start: + character: 6 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 151 + start: + character: 19 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out new file mode 100644 index 00000000..d471eb48 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-038-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 38 + line: 151 + name: embedded argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 37 + line: 149 + start: + character: 32 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 151 + start: + character: 38 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out new file mode 100644 index 00000000..07aee6f8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-040-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 40 + line: 151 + name: embedded argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 37 + line: 149 + start: + character: 32 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 151 + start: + character: 38 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out new file mode 100644 index 00000000..c5522fe6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-151-042-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 42 + line: 151 + name: embedded argument usage +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 37 + line: 149 + start: + character: 32 + line: 149 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 151 + start: + character: 38 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out new file mode 100644 index 00000000..8a62a1e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-051-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 51 + line: 156 + name: a global var in doc +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out new file mode 100644 index 00000000..7ba95306 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-053-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 53 + line: 156 + name: a global var in doc +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out new file mode 100644 index 00000000..3932cf2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-055-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 55 + line: 156 + name: a global var in doc +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out new file mode 100644 index 00000000..03a5f775 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-064-an_argument_in_doc].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 64 + line: 156 + name: an argument in doc +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 64 + line: 156 + start: + character: 64 + line: 156 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out new file mode 100644 index 00000000..6687a0c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-067-an_argument_in_doc].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 67 + line: 156 + name: an argument in doc +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 67 + line: 156 + start: + character: 67 + line: 156 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out new file mode 100644 index 00000000..1abbdc1c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-156-069-an_argument_in_doc].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 69 + line: 156 + name: an argument in doc +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 69 + line: 156 + start: + character: 69 + line: 156 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out new file mode 100644 index 00000000..497776f0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-159-019-an_argument_in_timeout].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 19 + line: 159 + name: an argument in timeout +result: +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 159 + start: + character: 19 + line: 159 +- !DocumentHighlight + kind: 3 + range: + end: + character: 27 + line: 164 + start: + character: 21 + line: 164 +- !DocumentHighlight + kind: 2 + range: + end: + character: 19 + line: 165 + start: + character: 13 + line: 165 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out new file mode 100644 index 00000000..ca6b68e0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-016-an_argument_in_tags].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 16 + line: 161 + name: an argument in tags +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 16 + line: 161 + start: + character: 16 + line: 161 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out new file mode 100644 index 00000000..3c707785 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-019-an_argument_in_tags].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 19 + line: 161 + name: an argument in tags +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 19 + line: 161 + start: + character: 19 + line: 161 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out new file mode 100644 index 00000000..90bbfc6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-021-an_argument_in_tags].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 21 + line: 161 + name: an argument in tags +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 21 + line: 161 + start: + character: 21 + line: 161 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out new file mode 100644 index 00000000..8d3237b6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-028-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 28 + line: 161 + name: an argument in tags +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out new file mode 100644 index 00000000..c7ae9b54 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-030-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 30 + line: 161 + name: an argument in tags +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out new file mode 100644 index 00000000..2494f21e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-161-032-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 32 + line: 161 + name: an argument in tags +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out new file mode 100644 index 00000000..892157ce --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-051-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 51 + line: 170 + name: a global var in doc +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out new file mode 100644 index 00000000..943de642 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-053-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 53 + line: 170 + name: a global var in doc +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out new file mode 100644 index 00000000..c2b7397c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-055-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 55 + line: 170 + name: a global var in doc +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out new file mode 100644 index 00000000..4e2c3790 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-064-an_argument_in_doc].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 64 + line: 170 + name: an argument in doc +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 64 + line: 170 + start: + character: 64 + line: 170 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out new file mode 100644 index 00000000..9565f511 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-067-an_argument_in_doc].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 67 + line: 170 + name: an argument in doc +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 67 + line: 170 + start: + character: 67 + line: 170 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out new file mode 100644 index 00000000..58db8939 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-170-069-an_argument_in_doc].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 69 + line: 170 + name: an argument in doc +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 69 + line: 170 + start: + character: 69 + line: 170 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out new file mode 100644 index 00000000..ab2fe7ca --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-173-019-an_argument_in_timeout].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 19 + line: 173 + name: an argument in timeout +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 27 + line: 169 + start: + character: 21 + line: 169 +- !DocumentHighlight + kind: 2 + range: + end: + character: 25 + line: 173 + start: + character: 19 + line: 173 +- !DocumentHighlight + kind: 2 + range: + end: + character: 19 + line: 178 + start: + character: 13 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out new file mode 100644 index 00000000..b0c441d5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-016-an_argument_in_tags].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 16 + line: 175 + name: an argument in tags +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 16 + line: 175 + start: + character: 16 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out new file mode 100644 index 00000000..54c8521e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-019-an_argument_in_tags].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 19 + line: 175 + name: an argument in tags +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 19 + line: 175 + start: + character: 19 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out new file mode 100644 index 00000000..9d6737d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-021-an_argument_in_tags].out @@ -0,0 +1,14 @@ +data: !GeneratedTestData + character: 21 + line: 175 + name: an argument in tags +result: +- !DocumentHighlight + kind: 1 + range: + end: + character: 21 + line: 175 + start: + character: 21 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out new file mode 100644 index 00000000..4ac4ff7e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-028-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 28 + line: 175 + name: an argument in tags +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out new file mode 100644 index 00000000..7af0546b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-030-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 30 + line: 175 + name: an argument in tags +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out new file mode 100644 index 00000000..efeeb381 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_highlight.test[document_highlight.robot-175-032-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 32 + line: 175 + name: an argument in tags +result: +- !DocumentHighlight + kind: 3 + range: + end: + character: 7 + line: 20 + start: + character: 2 + line: 20 +- !DocumentHighlight + kind: 2 + range: + end: + character: 43 + line: 30 + start: + character: 38 + line: 30 +- !DocumentHighlight + kind: 2 + range: + end: + character: 54 + line: 32 + start: + character: 49 + line: 32 +- !DocumentHighlight + kind: 2 + range: + end: + character: 21 + line: 34 + start: + character: 16 + line: 34 +- !DocumentHighlight + kind: 2 + range: + end: + character: 32 + line: 36 + start: + character: 27 + line: 36 +- !DocumentHighlight + kind: 2 + range: + end: + character: 40 + line: 38 + start: + character: 35 + line: 38 +- !DocumentHighlight + kind: 2 + range: + end: + character: 35 + line: 113 + start: + character: 30 + line: 113 +- !DocumentHighlight + kind: 2 + range: + end: + character: 44 + line: 122 + start: + character: 39 + line: 122 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 156 + start: + character: 51 + line: 156 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 161 + start: + character: 28 + line: 161 +- !DocumentHighlight + kind: 2 + range: + end: + character: 56 + line: 170 + start: + character: 51 + line: 170 +- !DocumentHighlight + kind: 2 + range: + end: + character: 33 + line: 175 + start: + character: 28 + line: 175 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out new file mode 100644 index 00000000..db91598a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-001-settings_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 0 + name: settings section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Settings + range: + end: + character: 1 + line: 3 + start: + character: 0 + line: 0 + selection_range: + end: + character: 1 + line: 3 + start: + character: 0 + line: 0 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out new file mode 100644 index 00000000..644e7ea6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-008-settings_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 0 + name: settings section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Settings + range: + end: + character: 1 + line: 3 + start: + character: 0 + line: 0 + selection_range: + end: + character: 1 + line: 3 + start: + character: 0 + line: 0 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out new file mode 100644 index 00000000..1e26eeda --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-000-015-settings_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 0 + name: settings section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Settings + range: + end: + character: 1 + line: 3 + start: + character: 0 + line: 0 + selection_range: + end: + character: 1 + line: 3 + start: + character: 0 + line: 0 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out new file mode 100644 index 00000000..a25c6c91 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-001-variables_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 4 + name: variables section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Variables + range: + end: + character: 1 + line: 8 + start: + character: 0 + line: 4 + selection_range: + end: + character: 1 + line: 8 + start: + character: 0 + line: 4 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out new file mode 100644 index 00000000..a21ab521 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-008-variables_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 4 + name: variables section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Variables + range: + end: + character: 1 + line: 8 + start: + character: 0 + line: 4 + selection_range: + end: + character: 1 + line: 8 + start: + character: 0 + line: 4 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out new file mode 100644 index 00000000..15d0a266 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-004-015-variables_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 4 + name: variables section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Variables + range: + end: + character: 1 + line: 8 + start: + character: 0 + line: 4 + selection_range: + end: + character: 1 + line: 8 + start: + character: 0 + line: 4 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out new file mode 100644 index 00000000..0d935837 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-001-variable_in_variables_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 6 + name: variable in variables section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${A_VAR} + range: + end: + character: 8 + line: 6 + start: + character: 0 + line: 6 + selection_range: + end: + character: 8 + line: 6 + start: + character: 0 + line: 6 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out new file mode 100644 index 00000000..a07b34fd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-004-variable_in_variables_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 4 + line: 6 + name: variable in variables section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${A_VAR} + range: + end: + character: 8 + line: 6 + start: + character: 0 + line: 6 + selection_range: + end: + character: 8 + line: 6 + start: + character: 0 + line: 6 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out new file mode 100644 index 00000000..6250179c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-006-007-variable_in_variables_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 7 + line: 6 + name: variable in variables section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${A_VAR} + range: + end: + character: 8 + line: 6 + start: + character: 0 + line: 6 + selection_range: + end: + character: 8 + line: 6 + start: + character: 0 + line: 6 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out new file mode 100644 index 00000000..3ad943d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-001-test_cases].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 9 + name: test cases +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Test Cases + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 9 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 9 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out new file mode 100644 index 00000000..1052b0fe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-009-test_cases].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 9 + line: 9 + name: test cases +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Test Cases + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 9 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 9 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out new file mode 100644 index 00000000..2b719038 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-009-017-test_cases].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 17 + line: 9 + name: test cases +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Test Cases + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 9 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 9 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out new file mode 100644 index 00000000..3802968c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-001-testcase].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 11 + name: testcase +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 5 + name: first + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out new file mode 100644 index 00000000..1948c572 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-003-testcase].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 3 + line: 11 + name: testcase +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 5 + name: first + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out new file mode 100644 index 00000000..c3e1852b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-011-004-testcase].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 4 + line: 11 + name: testcase +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 5 + name: first + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out new file mode 100644 index 00000000..53d1860c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-006-keyword_assignment].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 6 + line: 13 + name: keyword assignment +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${kw_result} + range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + selection_range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out new file mode 100644 index 00000000..a7d40122 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-010-keyword_assignment].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 10 + line: 13 + name: keyword assignment +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${kw_result} + range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + selection_range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out new file mode 100644 index 00000000..74490322 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-013-014-keyword_assignment].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 14 + line: 13 + name: keyword assignment +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${kw_result} + range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + selection_range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out new file mode 100644 index 00000000..132ab42a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-006-keyword_assignment_allready_defined].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 6 + line: 16 + name: keyword assignment allready defined +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 5 + name: first + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out new file mode 100644 index 00000000..acdee305 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-010-keyword_assignment_allready_defined].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 10 + line: 16 + name: keyword assignment allready defined +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 5 + name: first + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out new file mode 100644 index 00000000..9aef4fdb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-014-keyword_assignment_allready_defined].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 14 + line: 16 + name: keyword assignment allready defined +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 5 + name: first + range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + selection_range: + end: + character: 1 + line: 33 + start: + character: 0 + line: 11 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out new file mode 100644 index 00000000..575fa7bf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-022-multiple_keyword_assigns].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 22 + line: 16 + name: multiple keyword assigns +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${kw_result1} + range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + selection_range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out new file mode 100644 index 00000000..e7597bb4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-027-multiple_keyword_assigns].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 27 + line: 16 + name: multiple keyword assigns +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${kw_result1} + range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + selection_range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out new file mode 100644 index 00000000..aff6a711 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-016-031-multiple_keyword_assigns].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 31 + line: 16 + name: multiple keyword assigns +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${kw_result1} + range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + selection_range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out new file mode 100644 index 00000000..793f98e7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-011-local_var_RF_7].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 11 + line: 19 + name: local var RF 7 +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${local_var} + range: + end: + character: 21 + line: 19 + start: + character: 9 + line: 19 + selection_range: + end: + character: 21 + line: 19 + start: + character: 9 + line: 19 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out new file mode 100644 index 00000000..342f7ff9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-015-local_var_RF_7].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 19 + name: local var RF 7 +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${local_var} + range: + end: + character: 21 + line: 19 + start: + character: 9 + line: 19 + selection_range: + end: + character: 21 + line: 19 + start: + character: 9 + line: 19 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out new file mode 100644 index 00000000..e2ee751b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-019-019-local_var_RF_7].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 19 + line: 19 + name: local var RF 7 +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${local_var} + range: + end: + character: 21 + line: 19 + start: + character: 9 + line: 19 + selection_range: + end: + character: 21 + line: 19 + start: + character: 9 + line: 19 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out new file mode 100644 index 00000000..17bcfd3f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-011-loop_var].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 11 + line: 21 + name: loop var +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${loop_var} + range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + selection_range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out new file mode 100644 index 00000000..3e5a3fa2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-015-loop_var].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 21 + name: loop var +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${loop_var} + range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + selection_range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out new file mode 100644 index 00000000..242c210b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-021-018-loop_var].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 18 + line: 21 + name: loop var +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${loop_var} + range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + selection_range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out new file mode 100644 index 00000000..b98fbd85 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-031-exception_variable].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 31 + line: 28 + name: exception variable +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${exc} + range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + selection_range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out new file mode 100644 index 00000000..d73042bf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-032-exception_variable].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 32 + line: 28 + name: exception variable +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${exc} + range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + selection_range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out new file mode 100644 index 00000000..6c6785fc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-028-033-exception_variable].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 33 + line: 28 + name: exception variable +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${exc} + range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + selection_range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out new file mode 100644 index 00000000..9faff5dd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-001-comments_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 34 + name: comments section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Comments + range: + end: + character: 1 + line: 36 + start: + character: 0 + line: 34 + selection_range: + end: + character: 1 + line: 36 + start: + character: 0 + line: 34 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out new file mode 100644 index 00000000..1cf9ac4c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-008-comments_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 34 + name: comments section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Comments + range: + end: + character: 1 + line: 36 + start: + character: 0 + line: 34 + selection_range: + end: + character: 1 + line: 36 + start: + character: 0 + line: 34 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out new file mode 100644 index 00000000..04a8470b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-034-015-comments_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 34 + name: comments section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Comments + range: + end: + character: 1 + line: 36 + start: + character: 0 + line: 34 + selection_range: + end: + character: 1 + line: 36 + start: + character: 0 + line: 34 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out new file mode 100644 index 00000000..216da391 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-001-keywords_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 37 + name: keywords section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 37 + selection_range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 37 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out new file mode 100644 index 00000000..bd3738cf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-008-keywords_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 37 + name: keywords section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 37 + selection_range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 37 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out new file mode 100644 index 00000000..a1275fee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-037-015-keywords_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 37 + name: keywords section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 37 + selection_range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 37 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out new file mode 100644 index 00000000..9018bbe6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-001-keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 39 + name: keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 12 + name: a keywords + range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 39 + selection_range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 39 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out new file mode 100644 index 00000000..49ccc56f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-005-keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 5 + line: 39 + name: keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 12 + name: a keywords + range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 39 + selection_range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 39 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out new file mode 100644 index 00000000..db476fb7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-039-009-keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 9 + line: 39 + name: keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 12 + name: a keywords + range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 39 + selection_range: + end: + character: 56 + line: 43 + start: + character: 0 + line: 39 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out new file mode 100644 index 00000000..6be9a424 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-021-first_argument].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 21 + line: 41 + name: first argument +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${first} + range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + selection_range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out new file mode 100644 index 00000000..7857dd44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-023-first_argument].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 23 + line: 41 + name: first argument +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${first} + range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + selection_range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out new file mode 100644 index 00000000..700a8455 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-025-first_argument].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 25 + line: 41 + name: first argument +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${first} + range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + selection_range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out new file mode 100644 index 00000000..bcf810bc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-033-second_argument].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 33 + line: 41 + name: second argument +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${second} + range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + selection_range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out new file mode 100644 index 00000000..ed3b511b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-036-second_argument].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 36 + line: 41 + name: second argument +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${second} + range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + selection_range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out new file mode 100644 index 00000000..76592b6e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-041-038-second_argument].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 38 + line: 41 + name: second argument +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${second} + range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + selection_range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out new file mode 100644 index 00000000..ec06ada0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-001-another_keywords_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 44 + name: another keywords section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 44 + selection_range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 44 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out new file mode 100644 index 00000000..df3e9a11 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-008-another_keywords_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 44 + name: another keywords section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 44 + selection_range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 44 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out new file mode 100644 index 00000000..49f96a04 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-044-015-another_keywords_section].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 44 + name: another keywords section +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 44 + selection_range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 44 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out new file mode 100644 index 00000000..47cef82c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-001-another_keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 46 + name: another keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 12 + name: another keyword + range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 46 + selection_range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 46 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out new file mode 100644 index 00000000..e0b3d584 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-008-another_keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 46 + name: another keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 12 + name: another keyword + range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 46 + selection_range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 46 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out new file mode 100644 index 00000000..959e6333 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-046-014-another_keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 14 + line: 46 + name: another keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 12 + name: another keyword + range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 46 + selection_range: + end: + character: 1 + line: 50 + start: + character: 0 + line: 46 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out new file mode 100644 index 00000000..1e7754d8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-001-unreachable_test].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 52 + name: unreachable test +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Test Cases + range: + end: + character: 1 + line: 55 + start: + character: 0 + line: 51 + selection_range: + end: + character: 1 + line: 55 + start: + character: 0 + line: 51 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out new file mode 100644 index 00000000..f46c2746 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-002-unreachable_test].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 2 + line: 52 + name: unreachable test +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Test Cases + range: + end: + character: 1 + line: 55 + start: + character: 0 + line: 51 + selection_range: + end: + character: 1 + line: 55 + start: + character: 0 + line: 51 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out new file mode 100644 index 00000000..25b3cbff --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-052-003-unreachable_test].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 3 + line: 52 + name: unreachable test +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Test Cases + range: + end: + character: 1 + line: 55 + start: + character: 0 + line: 51 + selection_range: + end: + character: 1 + line: 55 + start: + character: 0 + line: 51 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out new file mode 100644 index 00000000..ce528ed4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-001-unreachable_keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 1 + line: 57 + name: unreachable keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 1 + line: 61 + start: + character: 0 + line: 56 + selection_range: + end: + character: 1 + line: 61 + start: + character: 0 + line: 56 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out new file mode 100644 index 00000000..5a40a0a4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-002-unreachable_keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 2 + line: 57 + name: unreachable keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 1 + line: 61 + start: + character: 0 + line: 56 + selection_range: + end: + character: 1 + line: 61 + start: + character: 0 + line: 56 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out new file mode 100644 index 00000000..0644acb8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-057-003-unreachable_keyword].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 3 + line: 57 + name: unreachable keyword +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 2 + name: Keywords + range: + end: + character: 1 + line: 61 + start: + character: 0 + line: 56 + selection_range: + end: + character: 1 + line: 61 + start: + character: 0 + line: 56 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..0a5deace --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-011-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 11 + line: 64 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 1}= + range: + end: + character: 18 + line: 64 + start: + character: 9 + line: 64 + selection_range: + end: + character: 18 + line: 64 + start: + character: 9 + line: 64 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..42fbdf6c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-013-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 13 + line: 64 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 1}= + range: + end: + character: 18 + line: 64 + start: + character: 9 + line: 64 + selection_range: + end: + character: 18 + line: 64 + start: + character: 9 + line: 64 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..314d4be0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-064-015-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 64 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 1}= + range: + end: + character: 18 + line: 64 + start: + character: 9 + line: 64 + selection_range: + end: + character: 18 + line: 64 + start: + character: 9 + line: 64 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..a3a7da2d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-011-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 11 + line: 66 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 2} = + range: + end: + character: 19 + line: 66 + start: + character: 9 + line: 66 + selection_range: + end: + character: 19 + line: 66 + start: + character: 9 + line: 66 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..57340c76 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-013-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 13 + line: 66 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 2} = + range: + end: + character: 19 + line: 66 + start: + character: 9 + line: 66 + selection_range: + end: + character: 19 + line: 66 + start: + character: 9 + line: 66 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..820ba80a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-066-015-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 15 + line: 66 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 2} = + range: + end: + character: 19 + line: 66 + start: + character: 9 + line: 66 + selection_range: + end: + character: 19 + line: 66 + start: + character: 9 + line: 66 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..b63cdd9a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-006-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 6 + line: 68 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 1} + range: + end: + character: 12 + line: 68 + start: + character: 4 + line: 68 + selection_range: + end: + character: 12 + line: 68 + start: + character: 4 + line: 68 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..54d37321 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-008-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 8 + line: 68 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 1} + range: + end: + character: 12 + line: 68 + start: + character: 4 + line: 68 + selection_range: + end: + character: 12 + line: 68 + start: + character: 4 + line: 68 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out new file mode 100644 index 00000000..b418b805 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_document_symbols.test[symbols.robot-068-010-variable_with_space_and_equal_sign].out @@ -0,0 +1,25 @@ +data: !GeneratedTestData + character: 10 + line: 68 + name: variable with space and equal sign +result: !DocumentSymbol + children: [] + deprecated: null + detail: null + kind: 13 + name: ${var 1} + range: + end: + character: 12 + line: 68 + start: + character: 4 + line: 68 + selection_range: + end: + character: 12 + line: 68 + start: + character: 4 + line: 68 + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out new file mode 100644 index 00000000..9affcbcc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-000-001-Settings_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 0 + name: Settings start +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 4 + kind: section + start_character: 0 + start_line: 0 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out new file mode 100644 index 00000000..78de4053 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Settings_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 5 + name: Settings end +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 4 + kind: section + start_character: 0 + start_line: 0 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out new file mode 100644 index 00000000..94c0457d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-005-001-Test_Cases_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 5 + name: Test Cases start +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 35 + kind: section + start_character: 0 + start_line: 5 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out new file mode 100644 index 00000000..453e1081 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-008-001-Testcase_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 8 + name: Testcase start +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 30 + kind: testcase + start_character: 0 + start_line: 8 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out new file mode 100644 index 00000000..c8532523 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-012-001-For_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 12 + name: For start +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 28 + kind: for + start_character: 0 + start_line: 12 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out new file mode 100644 index 00000000..7e2f967f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-014-001-If_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 14 + name: If start +result: +- !FoldingRange + collapsed_text: null + end_character: 25 + end_line: 16 + kind: if + start_character: 0 + start_line: 14 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out new file mode 100644 index 00000000..02aac385 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-017-001-If_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 17 + name: If start +result: +- !FoldingRange + collapsed_text: null + end_character: 25 + end_line: 19 + kind: if + start_character: 0 + start_line: 17 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out new file mode 100644 index 00000000..1768a0dc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-020-001-If_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 20 + name: If start +result: +- !FoldingRange + collapsed_text: null + end_character: 12 + end_line: 23 + kind: if + start_character: 0 + start_line: 20 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out new file mode 100644 index 00000000..5798e230 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-023-001-If_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 23 + name: If end +result: +- !FoldingRange + collapsed_text: null + end_character: 12 + end_line: 23 + kind: if + start_character: 0 + start_line: 20 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out new file mode 100644 index 00000000..7c28c367 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-028-001-For_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 28 + name: For end +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 28 + kind: for + start_character: 0 + start_line: 12 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out new file mode 100644 index 00000000..e0eb9b7d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 31 + name: Testcase end +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 30 + kind: testcase + start_character: 0 + start_line: 8 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out new file mode 100644 index 00000000..078bd568 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-031-001-Testcase_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 31 + name: Testcase start +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 35 + kind: testcase + start_character: 0 + start_line: 31 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out new file mode 100644 index 00000000..2a21cf65 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Test_Cases_end].out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 1 + line: 36 + name: Test Cases end +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 35 + kind: section + start_character: 0 + start_line: 5 +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 35 + kind: testcase + start_character: 0 + start_line: 31 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out new file mode 100644 index 00000000..d1d51a08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-036-001-Testcase_end].out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 1 + line: 36 + name: Testcase end +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 35 + kind: section + start_character: 0 + start_line: 5 +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 35 + kind: testcase + start_character: 0 + start_line: 31 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out new file mode 100644 index 00000000..0a0400d0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-039-001-Keyword_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 39 + name: Keyword start +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 42 + kind: keyword + start_character: 0 + start_line: 39 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out new file mode 100644 index 00000000..d3db608f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Comment_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 43 + name: Comment start +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 49 + kind: comment + start_character: 0 + start_line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out new file mode 100644 index 00000000..d35e9d23 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-043-001-Keyword_end].out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 1 + line: 43 + name: Keyword end +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 42 + kind: section + start_character: 0 + start_line: 36 +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 42 + kind: keyword + start_character: 0 + start_line: 39 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out new file mode 100644 index 00000000..4a15d479 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-050-001-Comment_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 50 + name: Comment end +result: +- !FoldingRange + collapsed_text: null + end_character: 1 + end_line: 49 + kind: comment + start_character: 0 + start_line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out new file mode 100644 index 00000000..e69dfd43 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-054-001-simple_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 54 + name: simple if start +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 57 + kind: if + start_character: 0 + start_line: 54 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out new file mode 100644 index 00000000..b557b750 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-057-001-simple_if_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 57 + name: simple if end +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 57 + kind: if + start_character: 0 + start_line: 54 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out new file mode 100644 index 00000000..01e14a42 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-060-001-complex_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 60 + name: complex if start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 62 + kind: if + start_character: 0 + start_line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out new file mode 100644 index 00000000..ca0a693d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-063-001-complex_else_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 63 + name: complex else if start +result: +- !FoldingRange + collapsed_text: null + end_character: 12 + end_line: 70 + kind: if + start_character: 0 + start_line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out new file mode 100644 index 00000000..716f94a4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-071-001-complex_second_else_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 71 + name: complex second else if start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 73 + kind: if + start_character: 0 + start_line: 71 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out new file mode 100644 index 00000000..93163416 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-074-001-else_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 74 + name: else start +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 77 + kind: if + start_character: 0 + start_line: 74 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out new file mode 100644 index 00000000..eefd8a8b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-077-001-else_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 77 + name: else end +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 77 + kind: if + start_character: 0 + start_line: 74 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out new file mode 100644 index 00000000..85a114ac --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-082-001-while_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 82 + name: while start +result: +- !FoldingRange + collapsed_text: null + end_character: 8 + end_line: 86 + kind: while + start_character: 0 + start_line: 82 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out new file mode 100644 index 00000000..cd0b9f51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-086-001-while_end].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 1 + line: 86 + name: while end +result: [] diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out new file mode 100644 index 00000000..c1283d72 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-093-001-try_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 93 + name: try start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 95 + kind: try + start_character: 0 + start_line: 93 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out new file mode 100644 index 00000000..387c1e77 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-096-001-except_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 96 + name: except start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 98 + kind: try + start_character: 0 + start_line: 96 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out new file mode 100644 index 00000000..da34858b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-099-001-try_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 99 + name: try end +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 98 + kind: try + start_character: 0 + start_line: 96 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out new file mode 100644 index 00000000..4a8713eb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-102-001-try_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 102 + name: try start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 104 + kind: try + start_character: 0 + start_line: 102 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out new file mode 100644 index 00000000..69313f1b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-105-001-finally_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 105 + name: finally start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 107 + kind: try + start_character: 0 + start_line: 105 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out new file mode 100644 index 00000000..41396908 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-108-001-try_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 108 + name: try end +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 107 + kind: try + start_character: 0 + start_line: 105 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out new file mode 100644 index 00000000..3379a57d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-111-001-try_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 111 + name: try start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 113 + kind: try + start_character: 0 + start_line: 111 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out new file mode 100644 index 00000000..ce3c8b98 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-114-001-except_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 114 + name: except start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 116 + kind: try + start_character: 0 + start_line: 114 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out new file mode 100644 index 00000000..e7bffbd6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-117-001-except_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 117 + name: except start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 119 + kind: try + start_character: 0 + start_line: 117 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out new file mode 100644 index 00000000..77fe4921 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-120-001-finally_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 120 + name: finally start +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 122 + kind: try + start_character: 0 + start_line: 120 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out new file mode 100644 index 00000000..c1cfea63 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[False-foldingrange.robot-123-001-try_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 123 + name: try end +result: +- !FoldingRange + collapsed_text: null + end_character: 21 + end_line: 122 + kind: try + start_character: 0 + start_line: 120 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out new file mode 100644 index 00000000..69de3f55 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-000-001-Settings_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 0 + name: Settings start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 4 + kind: section + start_character: null + start_line: 0 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out new file mode 100644 index 00000000..6690fec5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Settings_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 5 + name: Settings end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 4 + kind: section + start_character: null + start_line: 0 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out new file mode 100644 index 00000000..ec91a342 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-005-001-Test_Cases_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 5 + name: Test Cases start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 35 + kind: section + start_character: null + start_line: 5 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out new file mode 100644 index 00000000..3ed8dbbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-008-001-Testcase_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 8 + name: Testcase start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 30 + kind: testcase + start_character: null + start_line: 8 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out new file mode 100644 index 00000000..602cfe11 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-012-001-For_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 12 + name: For start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 28 + kind: for + start_character: null + start_line: 12 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out new file mode 100644 index 00000000..63399bab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-014-001-If_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 14 + name: If start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 16 + kind: if + start_character: null + start_line: 14 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out new file mode 100644 index 00000000..23696071 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-017-001-If_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 17 + name: If start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 19 + kind: if + start_character: null + start_line: 17 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out new file mode 100644 index 00000000..96af7a77 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-020-001-If_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 20 + name: If start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 23 + kind: if + start_character: null + start_line: 20 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out new file mode 100644 index 00000000..6a4bf050 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-023-001-If_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 23 + name: If end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 23 + kind: if + start_character: null + start_line: 20 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out new file mode 100644 index 00000000..9651ae60 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-028-001-For_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 28 + name: For end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 28 + kind: for + start_character: null + start_line: 12 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out new file mode 100644 index 00000000..8659dadc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 31 + name: Testcase end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 30 + kind: testcase + start_character: null + start_line: 8 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out new file mode 100644 index 00000000..be9e3e70 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-031-001-Testcase_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 31 + name: Testcase start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 35 + kind: testcase + start_character: null + start_line: 31 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out new file mode 100644 index 00000000..98070778 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Test_Cases_end].out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 1 + line: 36 + name: Test Cases end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 35 + kind: section + start_character: null + start_line: 5 +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 35 + kind: testcase + start_character: null + start_line: 31 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out new file mode 100644 index 00000000..41f5c618 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-036-001-Testcase_end].out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 1 + line: 36 + name: Testcase end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 35 + kind: section + start_character: null + start_line: 5 +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 35 + kind: testcase + start_character: null + start_line: 31 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out new file mode 100644 index 00000000..eda76c66 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-039-001-Keyword_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 39 + name: Keyword start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 42 + kind: keyword + start_character: null + start_line: 39 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out new file mode 100644 index 00000000..c5d945ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Comment_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 43 + name: Comment start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 49 + kind: comment + start_character: null + start_line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out new file mode 100644 index 00000000..81d4c6d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-043-001-Keyword_end].out @@ -0,0 +1,19 @@ +data: !GeneratedTestData + character: 1 + line: 43 + name: Keyword end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 42 + kind: section + start_character: null + start_line: 36 +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 42 + kind: keyword + start_character: null + start_line: 39 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out new file mode 100644 index 00000000..c963a5a4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-050-001-Comment_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 50 + name: Comment end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 49 + kind: comment + start_character: null + start_line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out new file mode 100644 index 00000000..6069e818 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-054-001-simple_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 54 + name: simple if start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 57 + kind: if + start_character: null + start_line: 54 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out new file mode 100644 index 00000000..32ee22cf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-057-001-simple_if_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 57 + name: simple if end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 57 + kind: if + start_character: null + start_line: 54 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out new file mode 100644 index 00000000..e4127087 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-060-001-complex_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 60 + name: complex if start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 62 + kind: if + start_character: null + start_line: 60 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out new file mode 100644 index 00000000..84495c2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-063-001-complex_else_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 63 + name: complex else if start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 70 + kind: if + start_character: null + start_line: 63 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out new file mode 100644 index 00000000..7caa9de7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-071-001-complex_second_else_if_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 71 + name: complex second else if start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 73 + kind: if + start_character: null + start_line: 71 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out new file mode 100644 index 00000000..23b94484 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-074-001-else_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 74 + name: else start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 77 + kind: if + start_character: null + start_line: 74 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out new file mode 100644 index 00000000..3dd1d9e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-077-001-else_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 77 + name: else end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 77 + kind: if + start_character: null + start_line: 74 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out new file mode 100644 index 00000000..dc14bc18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-082-001-while_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 82 + name: while start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 86 + kind: while + start_character: null + start_line: 82 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out new file mode 100644 index 00000000..cd0b9f51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-086-001-while_end].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 1 + line: 86 + name: while end +result: [] diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out new file mode 100644 index 00000000..20c0ac95 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-093-001-try_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 93 + name: try start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 95 + kind: try + start_character: null + start_line: 93 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out new file mode 100644 index 00000000..a73d4d76 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-096-001-except_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 96 + name: except start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 98 + kind: try + start_character: null + start_line: 96 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out new file mode 100644 index 00000000..97926538 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-099-001-try_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 99 + name: try end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 98 + kind: try + start_character: null + start_line: 96 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out new file mode 100644 index 00000000..e961bb19 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-102-001-try_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 102 + name: try start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 104 + kind: try + start_character: null + start_line: 102 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out new file mode 100644 index 00000000..0755837b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-105-001-finally_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 105 + name: finally start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 107 + kind: try + start_character: null + start_line: 105 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out new file mode 100644 index 00000000..c627b6eb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-108-001-try_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 108 + name: try end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 107 + kind: try + start_character: null + start_line: 105 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out new file mode 100644 index 00000000..ccabcfb4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-111-001-try_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 111 + name: try start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 113 + kind: try + start_character: null + start_line: 111 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out new file mode 100644 index 00000000..b2d14029 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-114-001-except_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 114 + name: except start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 116 + kind: try + start_character: null + start_line: 114 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out new file mode 100644 index 00000000..e1c0abd6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-117-001-except_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 117 + name: except start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 119 + kind: try + start_character: null + start_line: 117 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out new file mode 100644 index 00000000..74497c94 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-120-001-finally_start].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 120 + name: finally start +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 122 + kind: try + start_character: null + start_line: 120 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out new file mode 100644 index 00000000..5d2ea1f7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_foldingrange.test[True-foldingrange.robot-123-001-try_end].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 1 + line: 123 + name: try end +result: +- !FoldingRange + collapsed_text: null + end_character: null + end_line: 122 + kind: try + start_character: null + start_line: 120 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out new file mode 100644 index 00000000..9517e44a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-007-Separator].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 1 + name: Separator +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out new file mode 100644 index 00000000..9f375f6d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-012-Separator].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 1 + name: Separator +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out new file mode 100644 index 00000000..047eb2e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-017-Separator].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 17 + line: 1 + name: Separator +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out new file mode 100644 index 00000000..71a09bbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-018-Robot_Library_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 1 + name: Robot Library Import +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_selection_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out new file mode 100644 index 00000000..6f258fca --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-023-Robot_Library_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 1 + name: Robot Library Import +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_selection_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out new file mode 100644 index 00000000..8f118c5d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-001-028-Robot_Library_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 1 + name: Robot Library Import +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_selection_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out new file mode 100644 index 00000000..82678e99 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-018-library_import_by_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 4 + name: library import by path +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out new file mode 100644 index 00000000..4a92df18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-020-var_in_library_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 4 + name: var in library import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out new file mode 100644 index 00000000..2bdff36c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-023-var_in_library_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 4 + name: var in library import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out new file mode 100644 index 00000000..d4d38f93 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-025-var_in_library_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 4 + name: var in library import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out new file mode 100644 index 00000000..cd863d52 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-033-library_import_by_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 33 + line: 4 + name: library import by path +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out new file mode 100644 index 00000000..8fd7ce54 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-004-048-library_import_by_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 4 + name: library import by path +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out new file mode 100644 index 00000000..1754a618 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-018-Variables_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 7 + name: Variables Import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out new file mode 100644 index 00000000..8239f353 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-020-var_in_variables_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 7 + name: var in variables import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out new file mode 100644 index 00000000..a3ba6d93 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-023-var_in_variables_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 7 + name: var in variables import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out new file mode 100644 index 00000000..524f6028 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-025-var_in_variables_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 7 + name: var in variables import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out new file mode 100644 index 00000000..233f1383 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-033-Variables_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 33 + line: 7 + name: Variables Import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out new file mode 100644 index 00000000..b4b46b86 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-007-048-Variables_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 7 + name: Variables Import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out new file mode 100644 index 00000000..44b2f3ce --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-018-built_in_var_in_Resource_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 10 + name: built in var in Resource Import +result: +- !LocationLink + origin_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out new file mode 100644 index 00000000..a049d2ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-020-var_in_resource_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 10 + name: var in resource import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out new file mode 100644 index 00000000..b2b3a642 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-023-var_in_resource_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 10 + name: var in resource import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out new file mode 100644 index 00000000..a513df80 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-025-var_in_resource_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 10 + name: var in resource import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out new file mode 100644 index 00000000..4ca0a0a5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-040-built_in_var_in_Resource_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 40 + line: 10 + name: built in var in Resource Import +result: +- !LocationLink + origin_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out new file mode 100644 index 00000000..c90ffbde --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-010-062-built_in_var_in_Resource_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 62 + line: 10 + name: built in var in Resource Import +result: +- !LocationLink + origin_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out new file mode 100644 index 00000000..2f87ac00 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-020-var_in_Libary_import_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 14 + name: var in Libary import path +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 14 + start: + character: 20 + line: 14 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out new file mode 100644 index 00000000..b0e55bbd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-021-var_in_Libary_import_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 14 + name: var in Libary import path +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 14 + start: + character: 20 + line: 14 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out new file mode 100644 index 00000000..6842bfc3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-022-var_in_Libary_import_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 22 + line: 14 + name: var in Libary import path +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 14 + start: + character: 20 + line: 14 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out new file mode 100644 index 00000000..b9e122be --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-057-var_in_library_parameters].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 57 + line: 14 + name: var in library parameters +result: +- !LocationLink + origin_selection_range: + end: + character: 64 + line: 14 + start: + character: 57 + line: 14 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out new file mode 100644 index 00000000..1f167bad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-060-var_in_library_parameters].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 60 + line: 14 + name: var in library parameters +result: +- !LocationLink + origin_selection_range: + end: + character: 64 + line: 14 + start: + character: 57 + line: 14 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out new file mode 100644 index 00000000..2d3d8bb5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-063-var_in_library_parameters].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 63 + line: 14 + name: var in library parameters +result: +- !LocationLink + origin_selection_range: + end: + character: 64 + line: 14 + start: + character: 57 + line: 14 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out new file mode 100644 index 00000000..2b0644fd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-082-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 82 + line: 14 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out new file mode 100644 index 00000000..1a4d3be2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-085-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 85 + line: 14 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out new file mode 100644 index 00000000..8261c104 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-014-088-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 88 + line: 14 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out new file mode 100644 index 00000000..f4485a04 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-002-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 23 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out new file mode 100644 index 00000000..a1f12920 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-005-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 5 + line: 23 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out new file mode 100644 index 00000000..8a5af0dd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-023-008-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 8 + line: 23 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out new file mode 100644 index 00000000..079bc90d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-002-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 25 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out new file mode 100644 index 00000000..c04f7fc5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-003-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 3 + line: 25 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out new file mode 100644 index 00000000..c233ae92 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-025-004-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 25 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out new file mode 100644 index 00000000..870d7a36 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-002-List_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 27 + name: List Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out new file mode 100644 index 00000000..e82ef2b5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-006-List_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 6 + line: 27 + name: List Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out new file mode 100644 index 00000000..c592fc76 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-027-009-List_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 27 + name: List Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out new file mode 100644 index 00000000..a57aabeb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-002-Dict_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 29 + name: Dict Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out new file mode 100644 index 00000000..46e7c334 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-006-Dict_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 6 + line: 29 + name: Dict Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out new file mode 100644 index 00000000..642884f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-029-009-Dict_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 29 + name: Dict Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out new file mode 100644 index 00000000..28cb91a7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-021-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 32 + start: + character: 21 + line: 32 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out new file mode 100644 index 00000000..0dba1a41 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-023-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 32 + start: + character: 21 + line: 32 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out new file mode 100644 index 00000000..d71c9d08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-025-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 32 + start: + character: 21 + line: 32 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out new file mode 100644 index 00000000..7b0d6704 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-030-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 38 + line: 32 + start: + character: 30 + line: 32 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out new file mode 100644 index 00000000..3c475dbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-034-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 38 + line: 32 + start: + character: 30 + line: 32 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out new file mode 100644 index 00000000..15d634e9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-037-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 37 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 38 + line: 32 + start: + character: 30 + line: 32 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out new file mode 100644 index 00000000..ade8b6d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-042-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 42 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 32 + start: + character: 42 + line: 32 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out new file mode 100644 index 00000000..66fddf12 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-045-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 45 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 32 + start: + character: 42 + line: 32 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out new file mode 100644 index 00000000..eb0b5fd5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-032-048-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 32 + start: + character: 42 + line: 32 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out new file mode 100644 index 00000000..fb2df282 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-004-BuiltIn_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 43 + name: BuiltIn Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out new file mode 100644 index 00000000..663ff7a2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-005-BuiltIn_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 5 + line: 43 + name: BuiltIn Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out new file mode 100644 index 00000000..37e25eaf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-006-BuiltIn_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 6 + line: 43 + name: BuiltIn Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out new file mode 100644 index 00000000..ba8a9579 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-019-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 43 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 24 + line: 43 + start: + character: 19 + line: 43 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out new file mode 100644 index 00000000..4e8e9519 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-021-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 43 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 24 + line: 43 + start: + character: 19 + line: 43 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out new file mode 100644 index 00000000..90b42a56 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-043-023-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 43 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 24 + line: 43 + start: + character: 19 + line: 43 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out new file mode 100644 index 00000000..be66e20d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-013-List_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 47 + name: List Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 47 + start: + character: 13 + line: 47 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out new file mode 100644 index 00000000..cb8da7ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-017-List_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 47 + name: List Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 47 + start: + character: 13 + line: 47 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out new file mode 100644 index 00000000..f4d156da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-047-020-List_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 47 + name: List Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 47 + start: + character: 13 + line: 47 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out new file mode 100644 index 00000000..a7550e1f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-013-List_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 49 + name: List Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 49 + start: + character: 13 + line: 49 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out new file mode 100644 index 00000000..5d424c50 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-017-List_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 49 + name: List Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 49 + start: + character: 13 + line: 49 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out new file mode 100644 index 00000000..becb9d7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-049-020-List_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 49 + name: List Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 49 + start: + character: 13 + line: 49 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out new file mode 100644 index 00000000..5bd9fb55 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-013-Dict_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 52 + name: Dict Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 52 + start: + character: 13 + line: 52 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out new file mode 100644 index 00000000..725193b3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-017-Dict_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 52 + name: Dict Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 52 + start: + character: 13 + line: 52 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out new file mode 100644 index 00000000..5e034b72 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-052-020-Dict_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 52 + name: Dict Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 52 + start: + character: 13 + line: 52 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out new file mode 100644 index 00000000..70d1c5b9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-013-Dict_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 54 + name: Dict Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 54 + start: + character: 13 + line: 54 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out new file mode 100644 index 00000000..ef1b3e40 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-017-Dict_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 54 + name: Dict Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 54 + start: + character: 13 + line: 54 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out new file mode 100644 index 00000000..07bd779f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-054-020-Dict_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 54 + name: Dict Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 54 + start: + character: 13 + line: 54 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out new file mode 100644 index 00000000..0645860f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-004-Robot_Namespace_from_Library].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 59 + name: Robot Namespace from Library +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + target_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out new file mode 100644 index 00000000..ca490f2a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-009-Robot_Namespace_from_Library].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 59 + name: Robot Namespace from Library +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + target_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out new file mode 100644 index 00000000..4b6f0bb8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-014-Robot_Namespace_from_Library].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 59 + name: Robot Namespace from Library +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + target_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out new file mode 100644 index 00000000..ce6984de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-016-Robot_Library_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 59 + name: Robot Library Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 59 + start: + character: 16 + line: 59 + target_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_selection_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out new file mode 100644 index 00000000..11c1b688 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-023-Robot_Library_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 59 + name: Robot Library Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 59 + start: + character: 16 + line: 59 + target_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_selection_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out new file mode 100644 index 00000000..c7197523 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-029-Robot_Library_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 29 + line: 59 + name: Robot Library Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 59 + start: + character: 16 + line: 59 + target_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_selection_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out new file mode 100644 index 00000000..b3afde9c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-036-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 36 + line: 59 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 59 + start: + character: 36 + line: 59 + target_range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + target_selection_range: + end: + character: 8 + line: 22 + start: + character: 2 + line: 22 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out new file mode 100644 index 00000000..b2b32b5a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-039-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 39 + line: 59 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 59 + start: + character: 36 + line: 59 + target_range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + target_selection_range: + end: + character: 8 + line: 22 + start: + character: 2 + line: 22 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out new file mode 100644 index 00000000..e0d8907d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-059-041-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 41 + line: 59 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 59 + start: + character: 36 + line: 59 + target_range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + target_selection_range: + end: + character: 8 + line: 22 + start: + character: 2 + line: 22 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out new file mode 100644 index 00000000..1ef7b21b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-004-Robot_BuilIn_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 64 + name: Robot BuilIn Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 64 + start: + character: 4 + line: 64 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out new file mode 100644 index 00000000..5aeffb4e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-007-Robot_BuilIn_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 7 + line: 64 + name: Robot BuilIn Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 64 + start: + character: 4 + line: 64 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out new file mode 100644 index 00000000..bd57ce8c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-010-Robot_BuilIn_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 64 + name: Robot BuilIn Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 64 + start: + character: 4 + line: 64 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out new file mode 100644 index 00000000..5825dcdc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 12 + line: 64 + name: BuiltIn Keyword with Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out new file mode 100644 index 00000000..3148c59e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 64 + name: BuiltIn Keyword with Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out new file mode 100644 index 00000000..6cd569d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 64 + name: BuiltIn Keyword with Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out new file mode 100644 index 00000000..ee5c1bb0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-013-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out new file mode 100644 index 00000000..77b67746 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-014-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out new file mode 100644 index 00000000..54500342 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-015-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out new file mode 100644 index 00000000..4a4ecc30 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-023-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out new file mode 100644 index 00000000..84362f8a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-025-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out new file mode 100644 index 00000000..447bf418 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-068-027-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 27 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out new file mode 100644 index 00000000..52d02c18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-017-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 71 + start: + character: 17 + line: 71 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out new file mode 100644 index 00000000..dcf7c04e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-018-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 71 + start: + character: 17 + line: 71 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out new file mode 100644 index 00000000..0dfb5c02 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-019-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 71 + start: + character: 17 + line: 71 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out new file mode 100644 index 00000000..f1f42b95 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-024-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 24 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 71 + start: + character: 24 + line: 71 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out new file mode 100644 index 00000000..78cea173 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-026-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 71 + start: + character: 24 + line: 71 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out new file mode 100644 index 00000000..c1fefa5a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-071-028-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 71 + start: + character: 24 + line: 71 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out new file mode 100644 index 00000000..ed9e2c89 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-013-Imported_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 75 + name: Imported Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 27 + line: 75 + start: + character: 13 + line: 75 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out new file mode 100644 index 00000000..d59510da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-020-Imported_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 75 + name: Imported Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 27 + line: 75 + start: + character: 13 + line: 75 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out new file mode 100644 index 00000000..7c53a95a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-075-026-Imported_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 75 + name: Imported Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 27 + line: 75 + start: + character: 13 + line: 75 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out new file mode 100644 index 00000000..206ba21a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-004-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 78 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 78 + start: + character: 4 + line: 78 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out new file mode 100644 index 00000000..3f0d3acb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-017-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 78 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 78 + start: + character: 4 + line: 78 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out new file mode 100644 index 00000000..aec11ca4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-078-029-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 29 + line: 78 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 78 + start: + character: 4 + line: 78 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out new file mode 100644 index 00000000..404e7cee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-004-Namespace_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 81 + name: Namespace from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 81 + start: + character: 4 + line: 81 + target_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out new file mode 100644 index 00000000..e5a3098c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-010-Namespace_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 81 + name: Namespace from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 81 + start: + character: 4 + line: 81 + target_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out new file mode 100644 index 00000000..fc1fb060 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-016-Namespace_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 81 + name: Namespace from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 81 + start: + character: 4 + line: 81 + target_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out new file mode 100644 index 00000000..ce995ea4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-018-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 81 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 81 + start: + character: 18 + line: 81 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out new file mode 100644 index 00000000..3e3bb119 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-031-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 31 + line: 81 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 81 + start: + character: 18 + line: 81 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out new file mode 100644 index 00000000..9a755bdf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-081-043-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 43 + line: 81 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 81 + start: + character: 18 + line: 81 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out new file mode 100644 index 00000000..79cc2aa9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-004-call_a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 84 + name: call a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 84 + start: + character: 4 + line: 84 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out new file mode 100644 index 00000000..f235997e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-012-call_a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 12 + line: 84 + name: call a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 84 + start: + character: 4 + line: 84 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out new file mode 100644 index 00000000..644fb319 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-084-019-call_a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 84 + name: call a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 84 + start: + character: 4 + line: 84 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out new file mode 100644 index 00000000..025ff0b0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-004-unknown_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 86 + name: unknown keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out new file mode 100644 index 00000000..c4501128 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-013-unknown_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 86 + name: unknown keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out new file mode 100644 index 00000000..b48151e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-086-021-unknown_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 86 + name: unknown keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out new file mode 100644 index 00000000..178de03e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-015-a_keyword_in_setup].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 92 + name: a keyword in setup +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out new file mode 100644 index 00000000..50307fff --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-016-a_keyword_in_setup].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 92 + name: a keyword in setup +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out new file mode 100644 index 00000000..22d20db4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-092-017-a_keyword_in_setup].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 92 + name: a keyword in setup +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out new file mode 100644 index 00000000..b66200f0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-018-a_namespace_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 94 + name: a namespace in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 94 + start: + character: 18 + line: 94 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out new file mode 100644 index 00000000..d3cc3f2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-021-a_namespace_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 94 + name: a namespace in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 94 + start: + character: 18 + line: 94 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out new file mode 100644 index 00000000..783e8847 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-024-a_namespace_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 24 + line: 94 + name: a namespace in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 94 + start: + character: 18 + line: 94 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out new file mode 100644 index 00000000..e145a1df --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-026-a_keyword_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 94 + name: a keyword in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out new file mode 100644 index 00000000..07a64f67 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-027-a_keyword_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 27 + line: 94 + name: a keyword in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out new file mode 100644 index 00000000..c4ef471d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-094-028-a_keyword_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 94 + name: a keyword in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out new file mode 100644 index 00000000..3c9f7727 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-018-a_namespace_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 99 + name: a namespace in template +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 99 + start: + character: 18 + line: 99 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out new file mode 100644 index 00000000..0b24afd8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-021-a_namespace_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 99 + name: a namespace in template +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 99 + start: + character: 18 + line: 99 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out new file mode 100644 index 00000000..fa05dccd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-024-a_namespace_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 24 + line: 99 + name: a namespace in template +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 99 + start: + character: 18 + line: 99 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out new file mode 100644 index 00000000..acb3e315 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-026-a_keyword_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 99 + name: a keyword in template +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out new file mode 100644 index 00000000..18d40e70 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-027-a_keyword_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 27 + line: 99 + name: a keyword in template +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out new file mode 100644 index 00000000..b8ce1096 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-099-028-a_keyword_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 99 + name: a keyword in template +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out new file mode 100644 index 00000000..f8715526 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-004-a_keyword_with_emoji].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 109 + name: a keyword with emoji +result: +- !LocationLink + origin_selection_range: + end: + character: 6 + line: 109 + start: + character: 4 + line: 109 + target_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_selection_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out new file mode 100644 index 00000000..44ce504b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-109-005-a_keyword_with_emoji].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 5 + line: 109 + name: a keyword with emoji +result: +- !LocationLink + origin_selection_range: + end: + character: 6 + line: 109 + start: + character: 4 + line: 109 + target_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_selection_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out new file mode 100644 index 00000000..d7f5004e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-113-010-variable_in_if].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 113 + name: variable in if +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 113 + start: + character: 10 + line: 113 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out new file mode 100644 index 00000000..5c887ad7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-116-017-variable_in_else_if].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 116 + name: variable in else if +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 116 + start: + character: 17 + line: 116 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out new file mode 100644 index 00000000..ad2cb2b0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-121-009-variable_in_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 121 + name: variable in if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 121 + start: + character: 9 + line: 121 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out new file mode 100644 index 00000000..ffdb6f26 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-124-016-variable_in_else_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 124 + name: variable in else if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 124 + start: + character: 16 + line: 124 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out new file mode 100644 index 00000000..005eccbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-010-variable_in_inline_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 129 + name: variable in inline if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 129 + start: + character: 10 + line: 129 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..727f6e96 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-129-042-variable_in_inline_else_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 42 + line: 129 + name: variable in inline else if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 43 + line: 129 + start: + character: 42 + line: 129 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out new file mode 100644 index 00000000..11c93605 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-009-variable_in_inline_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 133 + name: variable in inline if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 133 + start: + character: 9 + line: 133 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..16a81732 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-133-039-variable_in_inline_else_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 39 + line: 133 + name: variable in inline else if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 40 + line: 133 + start: + character: 39 + line: 133 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out new file mode 100644 index 00000000..4f87541d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-136-025-expression_in_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 136 + name: expression in keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 136 + start: + character: 25 + line: 136 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out new file mode 100644 index 00000000..f274783d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-041-short_keyword_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 41 + line: 143 + name: short keyword argument +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 143 + start: + character: 41 + line: 143 + target_range: + end: + character: 23 + line: 23 + start: + character: 19 + line: 23 + target_selection_range: + end: + character: 22 + line: 23 + start: + character: 21 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out new file mode 100644 index 00000000..510b2040 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-048-keyword_argument_with_spaces].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 143 + name: keyword argument with spaces +result: +- !LocationLink + origin_selection_range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + target_range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + target_selection_range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out new file mode 100644 index 00000000..6503cd25 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-053-keyword_argument_with_spaces].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 53 + line: 143 + name: keyword argument with spaces +result: +- !LocationLink + origin_selection_range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + target_range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + target_selection_range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out new file mode 100644 index 00000000..c679c631 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-143-058-keyword_argument_with_spaces].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 58 + line: 143 + name: keyword argument with spaces +result: +- !LocationLink + origin_selection_range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + target_range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + target_selection_range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out new file mode 100644 index 00000000..2e8b3070 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-001-a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 1 + line: 149 + name: a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out new file mode 100644 index 00000000..84bc2716 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-008-a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 8 + line: 149 + name: a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out new file mode 100644 index 00000000..dbd22f9b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-149-015-a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 149 + name: a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out new file mode 100644 index 00000000..38e45adb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-021-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 155 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out new file mode 100644 index 00000000..3d915b2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-023-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 155 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out new file mode 100644 index 00000000..999c9327 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-025-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 155 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out new file mode 100644 index 00000000..1be872de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-030-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 155 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 155 + start: + character: 30 + line: 155 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out new file mode 100644 index 00000000..1bb226e0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-032-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 155 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 155 + start: + character: 30 + line: 155 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out new file mode 100644 index 00000000..7bab735e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-155-034-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 155 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 155 + start: + character: 30 + line: 155 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out new file mode 100644 index 00000000..fdc8d0e1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-013-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 158 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out new file mode 100644 index 00000000..aa1d011c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-158-014-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 158 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out new file mode 100644 index 00000000..88b77dc8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 160 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 160 + start: + character: 13 + line: 160 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out new file mode 100644 index 00000000..2ad7fcd5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-015-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 160 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 160 + start: + character: 13 + line: 160 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out new file mode 100644 index 00000000..4660d8a0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-160-017-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 160 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 160 + start: + character: 13 + line: 160 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out new file mode 100644 index 00000000..36e560bc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-021-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 164 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out new file mode 100644 index 00000000..1082011e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-022-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 22 + line: 164 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out new file mode 100644 index 00000000..631d5be0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-030-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 164 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out new file mode 100644 index 00000000..bb418382 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-032-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 164 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out new file mode 100644 index 00000000..f210370b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-034-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 164 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out new file mode 100644 index 00000000..58c0e52a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-039-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 39 + line: 164 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 164 + start: + character: 39 + line: 164 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out new file mode 100644 index 00000000..16692643 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-041-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 41 + line: 164 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 164 + start: + character: 39 + line: 164 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out new file mode 100644 index 00000000..85273368 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-164-043-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 43 + line: 164 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 164 + start: + character: 39 + line: 164 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out new file mode 100644 index 00000000..11982d4d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 168 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 168 + start: + character: 13 + line: 168 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out new file mode 100644 index 00000000..8ee8393a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-168-014-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 168 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 168 + start: + character: 13 + line: 168 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out new file mode 100644 index 00000000..a9096c51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 170 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 170 + start: + character: 13 + line: 170 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out new file mode 100644 index 00000000..31d58a50 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-015-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 170 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 170 + start: + character: 13 + line: 170 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out new file mode 100644 index 00000000..2c1d286e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-170-017-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 170 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 170 + start: + character: 13 + line: 170 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out new file mode 100644 index 00000000..88bfebaf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-021-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 174 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out new file mode 100644 index 00000000..107e0644 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-022-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 22 + line: 174 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out new file mode 100644 index 00000000..bcb425d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-030-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 174 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out new file mode 100644 index 00000000..5ce58467 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-033-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 33 + line: 174 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out new file mode 100644 index 00000000..8c637fba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-035-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 35 + line: 174 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out new file mode 100644 index 00000000..594b8478 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-039-a_default_value].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 39 + line: 174 + name: a default value +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out new file mode 100644 index 00000000..84d9267d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-040-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 40 + line: 174 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 174 + start: + character: 40 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out new file mode 100644 index 00000000..c85c0a7e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-048-an_overridden_argument].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 48 + line: 174 + name: an overridden argument +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out new file mode 100644 index 00000000..9c2bc61d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-049-an_overridden_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 49 + line: 174 + name: an overridden argument +result: +- !LocationLink + origin_selection_range: + end: + character: 51 + line: 174 + start: + character: 49 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out new file mode 100644 index 00000000..3ad3538d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-054-a_default_value_from_overriden_argument].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 54 + line: 174 + name: a default value from overriden argument +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out new file mode 100644 index 00000000..877c4d3f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-056-a_default_value_from_overriden_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 56 + line: 174 + name: a default value from overriden argument +result: +- !LocationLink + origin_selection_range: + end: + character: 61 + line: 174 + start: + character: 55 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out new file mode 100644 index 00000000..352ed535 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-174-058-a_default_value_from_overriden_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 58 + line: 174 + name: a default value from overriden argument +result: +- !LocationLink + origin_selection_range: + end: + character: 61 + line: 174 + start: + character: 55 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out new file mode 100644 index 00000000..7f2aaed0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 180 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 180 + start: + character: 13 + line: 180 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out new file mode 100644 index 00000000..9f7ff9da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-180-014-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 180 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 180 + start: + character: 13 + line: 180 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out new file mode 100644 index 00000000..e62f7093 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 182 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 19 + line: 182 + start: + character: 13 + line: 182 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out new file mode 100644 index 00000000..26343b08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-015-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 182 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 19 + line: 182 + start: + character: 13 + line: 182 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out new file mode 100644 index 00000000..cb34057a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-182-017-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 182 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 19 + line: 182 + start: + character: 13 + line: 182 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out new file mode 100644 index 00000000..66e1b72a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-021-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 187 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + target_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out new file mode 100644 index 00000000..05a9f287 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-029-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 29 + line: 187 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 187 + start: + character: 29 + line: 187 + target_range: + end: + character: 31 + line: 187 + start: + character: 27 + line: 187 + target_selection_range: + end: + character: 30 + line: 187 + start: + character: 29 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out new file mode 100644 index 00000000..a13d6445 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-187-034-argument_usage_in_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 187 + name: argument usage in argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 187 + start: + character: 34 + line: 187 + target_range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + target_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out new file mode 100644 index 00000000..edeb4504 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-191-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 191 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 14 + line: 191 + start: + character: 13 + line: 191 + target_range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + target_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out new file mode 100644 index 00000000..f9f75977 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-193-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 193 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 14 + line: 193 + start: + character: 13 + line: 193 + target_range: + end: + character: 31 + line: 187 + start: + character: 27 + line: 187 + target_selection_range: + end: + character: 30 + line: 187 + start: + character: 29 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out new file mode 100644 index 00000000..a0743929 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-004-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 197 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 197 + start: + character: 4 + line: 197 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out new file mode 100644 index 00000000..dd0ab8d8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-007-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 7 + line: 197 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 197 + start: + character: 4 + line: 197 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out new file mode 100644 index 00000000..08b0d544 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-197-010-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 197 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 197 + start: + character: 4 + line: 197 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out new file mode 100644 index 00000000..4d841947 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-004-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 199 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 199 + start: + character: 4 + line: 199 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out new file mode 100644 index 00000000..daf96590 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-007-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 7 + line: 199 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 199 + start: + character: 4 + line: 199 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out new file mode 100644 index 00000000..6672d1c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-199-010-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 199 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 199 + start: + character: 4 + line: 199 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out new file mode 100644 index 00000000..d417e0d4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-004-library_alias_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 201 + name: library alias from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 201 + start: + character: 4 + line: 201 + target_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_selection_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out new file mode 100644 index 00000000..52c662e8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-009-library_alias_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 201 + name: library alias from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 201 + start: + character: 4 + line: 201 + target_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_selection_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out new file mode 100644 index 00000000..886126ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-201-014-library_alias_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 201 + name: library alias from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 201 + start: + character: 4 + line: 201 + target_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_selection_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out new file mode 100644 index 00000000..8f408d19 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-051-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 51 + line: 205 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 205 + start: + character: 51 + line: 205 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out new file mode 100644 index 00000000..fc63710a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-053-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 53 + line: 205 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 205 + start: + character: 51 + line: 205 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out new file mode 100644 index 00000000..99b3c42e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-055-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 55 + line: 205 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 205 + start: + character: 51 + line: 205 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out new file mode 100644 index 00000000..c062929c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-064-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 64 + line: 205 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out new file mode 100644 index 00000000..01c73703 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-067-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 67 + line: 205 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out new file mode 100644 index 00000000..9138a62a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-205-069-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 69 + line: 205 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out new file mode 100644 index 00000000..24291cbf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-208-019-an_argument_in_timeout].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 208 + name: an argument in timeout +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 208 + start: + character: 19 + line: 208 + target_range: + end: + character: 28 + line: 213 + start: + character: 19 + line: 213 + target_selection_range: + end: + character: 27 + line: 213 + start: + character: 21 + line: 213 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out new file mode 100644 index 00000000..c07768d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-016-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 16 + line: 210 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out new file mode 100644 index 00000000..e4879ed2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-019-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 19 + line: 210 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out new file mode 100644 index 00000000..e1c07910 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-021-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 210 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out new file mode 100644 index 00000000..602cb6ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-028-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 210 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 210 + start: + character: 28 + line: 210 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out new file mode 100644 index 00000000..6b1ce1d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-030-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 210 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 210 + start: + character: 28 + line: 210 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out new file mode 100644 index 00000000..6abc94c8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-210-032-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 210 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 210 + start: + character: 28 + line: 210 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out new file mode 100644 index 00000000..3951adaa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-051-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 51 + line: 219 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 219 + start: + character: 51 + line: 219 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out new file mode 100644 index 00000000..397adb60 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-053-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 53 + line: 219 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 219 + start: + character: 51 + line: 219 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out new file mode 100644 index 00000000..38ad1c41 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-055-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 55 + line: 219 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 219 + start: + character: 51 + line: 219 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out new file mode 100644 index 00000000..0f54cdfc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-064-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 64 + line: 219 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out new file mode 100644 index 00000000..bd564fe0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-067-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 67 + line: 219 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out new file mode 100644 index 00000000..1f0ea012 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-219-069-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 69 + line: 219 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out new file mode 100644 index 00000000..c0de4a0d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-222-019-an_argument_in_timeout].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 222 + name: an argument in timeout +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 222 + start: + character: 19 + line: 222 + target_range: + end: + character: 28 + line: 218 + start: + character: 19 + line: 218 + target_selection_range: + end: + character: 27 + line: 218 + start: + character: 21 + line: 218 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out new file mode 100644 index 00000000..33d511a9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-016-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 16 + line: 224 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out new file mode 100644 index 00000000..f656a8df --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-019-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 19 + line: 224 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out new file mode 100644 index 00000000..8ac9085d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-021-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 224 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out new file mode 100644 index 00000000..23f05931 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-028-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 224 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 224 + start: + character: 28 + line: 224 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out new file mode 100644 index 00000000..cd700261 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-030-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 224 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 224 + start: + character: 28 + line: 224 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out new file mode 100644 index 00000000..6ef9cc6b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_definition.test_definition[goto.robot-224-032-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 224 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 224 + start: + character: 28 + line: 224 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out new file mode 100644 index 00000000..9517e44a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-007-Separator].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 1 + name: Separator +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out new file mode 100644 index 00000000..9f375f6d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-012-Separator].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 1 + name: Separator +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out new file mode 100644 index 00000000..047eb2e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-017-Separator].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 17 + line: 1 + name: Separator +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out new file mode 100644 index 00000000..71a09bbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-018-Robot_Library_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 1 + name: Robot Library Import +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_selection_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out new file mode 100644 index 00000000..6f258fca --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-023-Robot_Library_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 1 + name: Robot Library Import +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_selection_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out new file mode 100644 index 00000000..8f118c5d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-001-028-Robot_Library_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 1 + name: Robot Library Import +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_selection_range: + end: + character: 0 + line: 988 + start: + character: 0 + line: 987 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out new file mode 100644 index 00000000..82678e99 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-018-library_import_by_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 4 + name: library import by path +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out new file mode 100644 index 00000000..4a92df18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-020-var_in_library_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 4 + name: var in library import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out new file mode 100644 index 00000000..2bdff36c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-023-var_in_library_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 4 + name: var in library import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out new file mode 100644 index 00000000..d4d38f93 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-025-var_in_library_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 4 + name: var in library import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out new file mode 100644 index 00000000..cd863d52 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-033-library_import_by_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 33 + line: 4 + name: library import by path +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out new file mode 100644 index 00000000..8fd7ce54 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-004-048-library_import_by_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 4 + name: library import by path +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out new file mode 100644 index 00000000..1754a618 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-018-Variables_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 7 + name: Variables Import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out new file mode 100644 index 00000000..8239f353 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-020-var_in_variables_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 7 + name: var in variables import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out new file mode 100644 index 00000000..a3ba6d93 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-023-var_in_variables_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 7 + name: var in variables import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out new file mode 100644 index 00000000..524f6028 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-025-var_in_variables_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 7 + name: var in variables import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out new file mode 100644 index 00000000..233f1383 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-033-Variables_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 33 + line: 7 + name: Variables Import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out new file mode 100644 index 00000000..b4b46b86 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-007-048-Variables_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 7 + name: Variables Import +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out new file mode 100644 index 00000000..44b2f3ce --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-018-built_in_var_in_Resource_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 10 + name: built in var in Resource Import +result: +- !LocationLink + origin_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out new file mode 100644 index 00000000..a049d2ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-020-var_in_resource_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 10 + name: var in resource import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out new file mode 100644 index 00000000..b2b3a642 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-023-var_in_resource_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 10 + name: var in resource import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out new file mode 100644 index 00000000..a513df80 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-025-var_in_resource_import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 10 + name: var in resource import +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + target_range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + target_selection_range: + end: + character: 8 + line: 20 + start: + character: 2 + line: 20 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out new file mode 100644 index 00000000..4ca0a0a5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-040-built_in_var_in_Resource_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 40 + line: 10 + name: built in var in Resource Import +result: +- !LocationLink + origin_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out new file mode 100644 index 00000000..c90ffbde --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-010-062-built_in_var_in_Resource_Import].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 62 + line: 10 + name: built in var in Resource Import +result: +- !LocationLink + origin_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 1 + start: + character: 0 + line: 0 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out new file mode 100644 index 00000000..2f87ac00 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-020-var_in_Libary_import_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 14 + name: var in Libary import path +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 14 + start: + character: 20 + line: 14 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out new file mode 100644 index 00000000..b0e55bbd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-021-var_in_Libary_import_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 14 + name: var in Libary import path +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 14 + start: + character: 20 + line: 14 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out new file mode 100644 index 00000000..6842bfc3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-022-var_in_Libary_import_path].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 22 + line: 14 + name: var in Libary import path +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 14 + start: + character: 20 + line: 14 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out new file mode 100644 index 00000000..b9e122be --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-057-var_in_library_parameters].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 57 + line: 14 + name: var in library parameters +result: +- !LocationLink + origin_selection_range: + end: + character: 64 + line: 14 + start: + character: 57 + line: 14 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out new file mode 100644 index 00000000..1f167bad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-060-var_in_library_parameters].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 60 + line: 14 + name: var in library parameters +result: +- !LocationLink + origin_selection_range: + end: + character: 64 + line: 14 + start: + character: 57 + line: 14 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out new file mode 100644 index 00000000..2d3d8bb5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-063-var_in_library_parameters].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 63 + line: 14 + name: var in library parameters +result: +- !LocationLink + origin_selection_range: + end: + character: 64 + line: 14 + start: + character: 57 + line: 14 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out new file mode 100644 index 00000000..2b0644fd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-082-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 82 + line: 14 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out new file mode 100644 index 00000000..1a4d3be2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-085-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 85 + line: 14 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out new file mode 100644 index 00000000..8261c104 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-014-088-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 88 + line: 14 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out new file mode 100644 index 00000000..f4485a04 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-002-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 23 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out new file mode 100644 index 00000000..a1f12920 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-005-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 5 + line: 23 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out new file mode 100644 index 00000000..8a5af0dd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-023-008-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 8 + line: 23 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + target_selection_range: + end: + character: 9 + line: 23 + start: + character: 2 + line: 23 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out new file mode 100644 index 00000000..079bc90d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-002-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 25 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out new file mode 100644 index 00000000..c04f7fc5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-003-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 3 + line: 25 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out new file mode 100644 index 00000000..c233ae92 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-025-004-Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 25 + name: Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + target_selection_range: + end: + character: 5 + line: 25 + start: + character: 2 + line: 25 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out new file mode 100644 index 00000000..870d7a36 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-002-List_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 27 + name: List Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out new file mode 100644 index 00000000..e82ef2b5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-006-List_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 6 + line: 27 + name: List Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out new file mode 100644 index 00000000..c592fc76 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-027-009-List_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 27 + name: List Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out new file mode 100644 index 00000000..a57aabeb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-002-Dict_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 2 + line: 29 + name: Dict Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out new file mode 100644 index 00000000..46e7c334 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-006-Dict_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 6 + line: 29 + name: Dict Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out new file mode 100644 index 00000000..642884f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-029-009-Dict_Var_declaration].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 29 + name: Dict Var declaration +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out new file mode 100644 index 00000000..28cb91a7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-021-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 32 + start: + character: 21 + line: 32 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out new file mode 100644 index 00000000..0dba1a41 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-023-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 32 + start: + character: 21 + line: 32 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out new file mode 100644 index 00000000..d71c9d08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-025-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 32 + start: + character: 21 + line: 32 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out new file mode 100644 index 00000000..7b0d6704 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-030-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 38 + line: 32 + start: + character: 30 + line: 32 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out new file mode 100644 index 00000000..3c475dbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-034-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 38 + line: 32 + start: + character: 30 + line: 32 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out new file mode 100644 index 00000000..15d634e9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-037-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 37 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 38 + line: 32 + start: + character: 30 + line: 32 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out new file mode 100644 index 00000000..ade8b6d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-042-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 42 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 32 + start: + character: 42 + line: 32 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out new file mode 100644 index 00000000..66fddf12 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-045-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 45 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 32 + start: + character: 42 + line: 32 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out new file mode 100644 index 00000000..eb0b5fd5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-032-048-var_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 32 + name: var usage +result: +- !LocationLink + origin_selection_range: + end: + character: 49 + line: 32 + start: + character: 42 + line: 32 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out new file mode 100644 index 00000000..fb2df282 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-004-BuiltIn_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 43 + name: BuiltIn Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out new file mode 100644 index 00000000..663ff7a2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-005-BuiltIn_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 5 + line: 43 + name: BuiltIn Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out new file mode 100644 index 00000000..37e25eaf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-006-BuiltIn_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 6 + line: 43 + name: BuiltIn Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out new file mode 100644 index 00000000..ba8a9579 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-019-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 43 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 24 + line: 43 + start: + character: 19 + line: 43 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out new file mode 100644 index 00000000..4e8e9519 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-021-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 43 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 24 + line: 43 + start: + character: 19 + line: 43 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out new file mode 100644 index 00000000..90b42a56 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-043-023-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 43 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 24 + line: 43 + start: + character: 19 + line: 43 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out new file mode 100644 index 00000000..be66e20d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-013-List_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 47 + name: List Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 47 + start: + character: 13 + line: 47 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out new file mode 100644 index 00000000..cb8da7ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-017-List_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 47 + name: List Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 47 + start: + character: 13 + line: 47 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out new file mode 100644 index 00000000..f4d156da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-047-020-List_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 47 + name: List Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 47 + start: + character: 13 + line: 47 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out new file mode 100644 index 00000000..a7550e1f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-013-List_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 49 + name: List Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 49 + start: + character: 13 + line: 49 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out new file mode 100644 index 00000000..5d424c50 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-017-List_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 49 + name: List Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 49 + start: + character: 13 + line: 49 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out new file mode 100644 index 00000000..becb9d7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-049-020-List_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 49 + name: List Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 49 + start: + character: 13 + line: 49 + target_range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + target_selection_range: + end: + character: 10 + line: 27 + start: + character: 2 + line: 27 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out new file mode 100644 index 00000000..5bd9fb55 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-013-Dict_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 52 + name: Dict Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 52 + start: + character: 13 + line: 52 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out new file mode 100644 index 00000000..725193b3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-017-Dict_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 52 + name: Dict Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 52 + start: + character: 13 + line: 52 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out new file mode 100644 index 00000000..5e034b72 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-052-020-Dict_Var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 52 + name: Dict Var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 52 + start: + character: 13 + line: 52 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out new file mode 100644 index 00000000..70d1c5b9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-013-Dict_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 54 + name: Dict Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 54 + start: + character: 13 + line: 54 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out new file mode 100644 index 00000000..ef1b3e40 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-017-Dict_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 54 + name: Dict Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 54 + start: + character: 13 + line: 54 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out new file mode 100644 index 00000000..07bd779f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-054-020-Dict_Var_as_normal_var].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 54 + name: Dict Var as normal var +result: +- !LocationLink + origin_selection_range: + end: + character: 21 + line: 54 + start: + character: 13 + line: 54 + target_range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + target_selection_range: + end: + character: 10 + line: 29 + start: + character: 2 + line: 29 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out new file mode 100644 index 00000000..0645860f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-004-Robot_Namespace_from_Library].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 59 + name: Robot Namespace from Library +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + target_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out new file mode 100644 index 00000000..ca490f2a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-009-Robot_Namespace_from_Library].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 59 + name: Robot Namespace from Library +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + target_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out new file mode 100644 index 00000000..4b6f0bb8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-014-Robot_Namespace_from_Library].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 59 + name: Robot Namespace from Library +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + target_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_selection_range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out new file mode 100644 index 00000000..ce6984de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-016-Robot_Library_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 59 + name: Robot Library Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 59 + start: + character: 16 + line: 59 + target_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_selection_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out new file mode 100644 index 00000000..11c1b688 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-023-Robot_Library_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 59 + name: Robot Library Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 59 + start: + character: 16 + line: 59 + target_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_selection_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out new file mode 100644 index 00000000..c7197523 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-029-Robot_Library_Keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 29 + line: 59 + name: Robot Library Keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 59 + start: + character: 16 + line: 59 + target_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_selection_range: + end: + character: 0 + line: 958 + start: + character: 0 + line: 957 + target_uri: Collections.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out new file mode 100644 index 00000000..b3afde9c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-036-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 36 + line: 59 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 59 + start: + character: 36 + line: 59 + target_range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + target_selection_range: + end: + character: 8 + line: 22 + start: + character: 2 + line: 22 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out new file mode 100644 index 00000000..b2b32b5a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-039-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 39 + line: 59 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 59 + start: + character: 36 + line: 59 + target_range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + target_selection_range: + end: + character: 8 + line: 22 + start: + character: 2 + line: 22 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out new file mode 100644 index 00000000..e0d8907d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-059-041-Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 41 + line: 59 + name: Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 59 + start: + character: 36 + line: 59 + target_range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + target_selection_range: + end: + character: 8 + line: 22 + start: + character: 2 + line: 22 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out new file mode 100644 index 00000000..1ef7b21b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-004-Robot_BuilIn_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 64 + name: Robot BuilIn Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 64 + start: + character: 4 + line: 64 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out new file mode 100644 index 00000000..5aeffb4e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-007-Robot_BuilIn_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 7 + line: 64 + name: Robot BuilIn Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 64 + start: + character: 4 + line: 64 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out new file mode 100644 index 00000000..bd57ce8c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-010-Robot_BuilIn_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 64 + name: Robot BuilIn Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 64 + start: + character: 4 + line: 64 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out new file mode 100644 index 00000000..5825dcdc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-012-BuiltIn_Keyword_with_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 12 + line: 64 + name: BuiltIn Keyword with Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out new file mode 100644 index 00000000..3148c59e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-013-BuiltIn_Keyword_with_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 64 + name: BuiltIn Keyword with Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out new file mode 100644 index 00000000..6cd569d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-064-014-BuiltIn_Keyword_with_Namespace].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 64 + name: BuiltIn Keyword with Namespace +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out new file mode 100644 index 00000000..ee5c1bb0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-013-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out new file mode 100644 index 00000000..77b67746 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-014-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out new file mode 100644 index 00000000..54500342 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-015-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out new file mode 100644 index 00000000..4a4ecc30 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-023-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out new file mode 100644 index 00000000..84362f8a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-025-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out new file mode 100644 index 00000000..447bf418 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-068-027-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 27 + line: 68 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out new file mode 100644 index 00000000..52d02c18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-017-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 71 + start: + character: 17 + line: 71 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out new file mode 100644 index 00000000..dcf7c04e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-018-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 71 + start: + character: 17 + line: 71 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out new file mode 100644 index 00000000..0dfb5c02 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-019-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 71 + start: + character: 17 + line: 71 + target_range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + target_selection_range: + end: + character: 16 + line: 68 + start: + character: 13 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out new file mode 100644 index 00000000..f1f42b95 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-024-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 24 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 71 + start: + character: 24 + line: 71 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out new file mode 100644 index 00000000..78cea173 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-026-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 71 + start: + character: 24 + line: 71 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out new file mode 100644 index 00000000..c1fefa5a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-071-028-For_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 71 + name: For Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 71 + start: + character: 24 + line: 71 + target_range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + target_selection_range: + end: + character: 28 + line: 68 + start: + character: 23 + line: 68 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out new file mode 100644 index 00000000..ed9e2c89 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-013-Imported_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 75 + name: Imported Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 27 + line: 75 + start: + character: 13 + line: 75 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out new file mode 100644 index 00000000..d59510da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-020-Imported_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 20 + line: 75 + name: Imported Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 27 + line: 75 + start: + character: 13 + line: 75 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out new file mode 100644 index 00000000..7c53a95a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-075-026-Imported_Variable].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 75 + name: Imported Variable +result: +- !LocationLink + origin_selection_range: + end: + character: 27 + line: 75 + start: + character: 13 + line: 75 + target_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_selection_range: + end: + character: 0 + line: 0 + start: + character: 0 + line: 0 + target_uri: myvariables.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out new file mode 100644 index 00000000..206ba21a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-004-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 78 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 78 + start: + character: 4 + line: 78 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out new file mode 100644 index 00000000..3f0d3acb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-017-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 78 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 78 + start: + character: 4 + line: 78 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out new file mode 100644 index 00000000..aec11ca4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-078-029-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 29 + line: 78 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 78 + start: + character: 4 + line: 78 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out new file mode 100644 index 00000000..404e7cee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-004-Namespace_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 81 + name: Namespace from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 81 + start: + character: 4 + line: 81 + target_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out new file mode 100644 index 00000000..e5a3098c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-010-Namespace_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 81 + name: Namespace from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 81 + start: + character: 4 + line: 81 + target_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out new file mode 100644 index 00000000..fc1fb060 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-016-Namespace_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 81 + name: Namespace from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 81 + start: + character: 4 + line: 81 + target_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_selection_range: + end: + character: 63 + line: 10 + start: + character: 18 + line: 10 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out new file mode 100644 index 00000000..ce995ea4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-018-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 81 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 81 + start: + character: 18 + line: 81 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out new file mode 100644 index 00000000..3e3bb119 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-031-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 31 + line: 81 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 81 + start: + character: 18 + line: 81 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out new file mode 100644 index 00000000..9a755bdf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-081-043-Keyword_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 43 + line: 81 + name: Keyword from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 81 + start: + character: 18 + line: 81 + target_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_selection_range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out new file mode 100644 index 00000000..79cc2aa9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-004-call_a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 84 + name: call a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 84 + start: + character: 4 + line: 84 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out new file mode 100644 index 00000000..f235997e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-012-call_a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 12 + line: 84 + name: call a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 84 + start: + character: 4 + line: 84 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out new file mode 100644 index 00000000..644fb319 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-084-019-call_a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 84 + name: call a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 20 + line: 84 + start: + character: 4 + line: 84 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out new file mode 100644 index 00000000..025ff0b0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-004-unknown_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 86 + name: unknown keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out new file mode 100644 index 00000000..c4501128 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-013-unknown_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 86 + name: unknown keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out new file mode 100644 index 00000000..b48151e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-086-021-unknown_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 86 + name: unknown keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out new file mode 100644 index 00000000..178de03e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-015-a_keyword_in_setup].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 92 + name: a keyword in setup +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out new file mode 100644 index 00000000..50307fff --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-016-a_keyword_in_setup].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 92 + name: a keyword in setup +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out new file mode 100644 index 00000000..22d20db4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-092-017-a_keyword_in_setup].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 92 + name: a keyword in setup +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out new file mode 100644 index 00000000..b66200f0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-018-a_namespace_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 94 + name: a namespace in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 94 + start: + character: 18 + line: 94 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out new file mode 100644 index 00000000..d3cc3f2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-021-a_namespace_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 94 + name: a namespace in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 94 + start: + character: 18 + line: 94 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out new file mode 100644 index 00000000..783e8847 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-024-a_namespace_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 24 + line: 94 + name: a namespace in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 94 + start: + character: 18 + line: 94 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out new file mode 100644 index 00000000..e145a1df --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-026-a_keyword_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 94 + name: a keyword in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out new file mode 100644 index 00000000..07a64f67 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-027-a_keyword_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 27 + line: 94 + name: a keyword in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out new file mode 100644 index 00000000..c4ef471d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-094-028-a_keyword_in_teardown].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 94 + name: a keyword in teardown +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out new file mode 100644 index 00000000..3c9f7727 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-018-a_namespace_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 18 + line: 99 + name: a namespace in template +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 99 + start: + character: 18 + line: 99 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out new file mode 100644 index 00000000..0b24afd8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-021-a_namespace_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 99 + name: a namespace in template +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 99 + start: + character: 18 + line: 99 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out new file mode 100644 index 00000000..fa05dccd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-024-a_namespace_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 24 + line: 99 + name: a namespace in template +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 99 + start: + character: 18 + line: 99 + target_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_selection_range: + end: + character: 0 + line: 4078 + start: + character: 0 + line: 4077 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out new file mode 100644 index 00000000..acb3e315 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-026-a_keyword_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 26 + line: 99 + name: a keyword in template +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out new file mode 100644 index 00000000..18d40e70 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-027-a_keyword_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 27 + line: 99 + name: a keyword in template +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out new file mode 100644 index 00000000..b8ce1096 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-099-028-a_keyword_in_template].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 99 + name: a keyword in template +result: +- !LocationLink + origin_selection_range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + target_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_selection_range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + target_uri: BuiltIn.py diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out new file mode 100644 index 00000000..f8715526 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-004-a_keyword_with_emoji].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 109 + name: a keyword with emoji +result: +- !LocationLink + origin_selection_range: + end: + character: 6 + line: 109 + start: + character: 4 + line: 109 + target_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_selection_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out new file mode 100644 index 00000000..44ce504b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-109-005-a_keyword_with_emoji].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 5 + line: 109 + name: a keyword with emoji +result: +- !LocationLink + origin_selection_range: + end: + character: 6 + line: 109 + start: + character: 4 + line: 109 + target_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_selection_range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out new file mode 100644 index 00000000..d7f5004e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-113-010-variable_in_if].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 113 + name: variable in if +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 113 + start: + character: 10 + line: 113 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out new file mode 100644 index 00000000..5c887ad7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-116-017-variable_in_else_if].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 116 + name: variable in else if +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 116 + start: + character: 17 + line: 116 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out new file mode 100644 index 00000000..ad2cb2b0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-121-009-variable_in_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 121 + name: variable in if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 121 + start: + character: 9 + line: 121 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out new file mode 100644 index 00000000..ffdb6f26 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-124-016-variable_in_else_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 16 + line: 124 + name: variable in else if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 17 + line: 124 + start: + character: 16 + line: 124 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out new file mode 100644 index 00000000..005eccbe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-010-variable_in_inline_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 129 + name: variable in inline if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 129 + start: + character: 10 + line: 129 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..727f6e96 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-129-042-variable_in_inline_else_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 42 + line: 129 + name: variable in inline else if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 43 + line: 129 + start: + character: 42 + line: 129 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out new file mode 100644 index 00000000..11c93605 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-009-variable_in_inline_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 133 + name: variable in inline if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 10 + line: 133 + start: + character: 9 + line: 133 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..16a81732 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-133-039-variable_in_inline_else_if_expression].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 39 + line: 133 + name: variable in inline else if expression +result: +- !LocationLink + origin_selection_range: + end: + character: 40 + line: 133 + start: + character: 39 + line: 133 + target_range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + target_selection_range: + end: + character: 3 + line: 37 + start: + character: 2 + line: 37 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out new file mode 100644 index 00000000..4f87541d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-136-025-expression_in_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 136 + name: expression in keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 136 + start: + character: 25 + line: 136 + target_range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + target_selection_range: + end: + character: 3 + line: 36 + start: + character: 2 + line: 36 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out new file mode 100644 index 00000000..f274783d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-041-short_keyword_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 41 + line: 143 + name: short keyword argument +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 143 + start: + character: 41 + line: 143 + target_range: + end: + character: 23 + line: 23 + start: + character: 19 + line: 23 + target_selection_range: + end: + character: 22 + line: 23 + start: + character: 21 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out new file mode 100644 index 00000000..510b2040 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-048-keyword_argument_with_spaces].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 48 + line: 143 + name: keyword argument with spaces +result: +- !LocationLink + origin_selection_range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + target_range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + target_selection_range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out new file mode 100644 index 00000000..6503cd25 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-053-keyword_argument_with_spaces].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 53 + line: 143 + name: keyword argument with spaces +result: +- !LocationLink + origin_selection_range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + target_range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + target_selection_range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out new file mode 100644 index 00000000..c679c631 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-143-058-keyword_argument_with_spaces].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 58 + line: 143 + name: keyword argument with spaces +result: +- !LocationLink + origin_selection_range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + target_range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + target_selection_range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out new file mode 100644 index 00000000..2e8b3070 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-001-a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 1 + line: 149 + name: a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out new file mode 100644 index 00000000..84bc2716 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-008-a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 8 + line: 149 + name: a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out new file mode 100644 index 00000000..dbd22f9b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-149-015-a_simple_keyword].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 149 + name: a simple keyword +result: +- !LocationLink + origin_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_selection_range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out new file mode 100644 index 00000000..38e45adb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-021-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 155 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out new file mode 100644 index 00000000..3d915b2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-023-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 23 + line: 155 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out new file mode 100644 index 00000000..999c9327 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-025-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 25 + line: 155 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out new file mode 100644 index 00000000..1be872de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-030-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 155 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 155 + start: + character: 30 + line: 155 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out new file mode 100644 index 00000000..1bb226e0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-032-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 155 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 155 + start: + character: 30 + line: 155 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out new file mode 100644 index 00000000..7bab735e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-155-034-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 155 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 155 + start: + character: 30 + line: 155 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out new file mode 100644 index 00000000..fdc8d0e1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-013-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 158 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out new file mode 100644 index 00000000..aa1d011c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-158-014-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 158 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out new file mode 100644 index 00000000..88b77dc8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 160 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 160 + start: + character: 13 + line: 160 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out new file mode 100644 index 00000000..2ad7fcd5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-015-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 160 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 160 + start: + character: 13 + line: 160 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out new file mode 100644 index 00000000..4660d8a0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-160-017-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 160 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 160 + start: + character: 13 + line: 160 + target_range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + target_selection_range: + end: + character: 26 + line: 155 + start: + character: 21 + line: 155 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out new file mode 100644 index 00000000..36e560bc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-021-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 164 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out new file mode 100644 index 00000000..1082011e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-022-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 22 + line: 164 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out new file mode 100644 index 00000000..631d5be0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-030-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 164 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out new file mode 100644 index 00000000..bb418382 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-032-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 164 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out new file mode 100644 index 00000000..f210370b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-034-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 164 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out new file mode 100644 index 00000000..58c0e52a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-039-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 39 + line: 164 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 164 + start: + character: 39 + line: 164 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out new file mode 100644 index 00000000..16692643 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-041-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 41 + line: 164 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 164 + start: + character: 39 + line: 164 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out new file mode 100644 index 00000000..85273368 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-164-043-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 43 + line: 164 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 44 + line: 164 + start: + character: 39 + line: 164 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out new file mode 100644 index 00000000..11982d4d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 168 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 168 + start: + character: 13 + line: 168 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out new file mode 100644 index 00000000..8ee8393a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-168-014-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 168 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 168 + start: + character: 13 + line: 168 + target_range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + target_selection_range: + end: + character: 23 + line: 164 + start: + character: 21 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out new file mode 100644 index 00000000..a9096c51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 170 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 170 + start: + character: 13 + line: 170 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out new file mode 100644 index 00000000..31d58a50 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-015-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 170 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 170 + start: + character: 13 + line: 170 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out new file mode 100644 index 00000000..2c1d286e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-170-017-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 170 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 18 + line: 170 + start: + character: 13 + line: 170 + target_range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + target_selection_range: + end: + character: 35 + line: 164 + start: + character: 30 + line: 164 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out new file mode 100644 index 00000000..88bfebaf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-021-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 174 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out new file mode 100644 index 00000000..107e0644 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-022-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 22 + line: 174 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out new file mode 100644 index 00000000..bcb425d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-030-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 174 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out new file mode 100644 index 00000000..5ce58467 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-033-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 33 + line: 174 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out new file mode 100644 index 00000000..8c637fba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-035-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 35 + line: 174 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out new file mode 100644 index 00000000..594b8478 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-039-a_default_value].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 39 + line: 174 + name: a default value +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out new file mode 100644 index 00000000..84d9267d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-040-a_default_value].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 40 + line: 174 + name: a default value +result: +- !LocationLink + origin_selection_range: + end: + character: 42 + line: 174 + start: + character: 40 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out new file mode 100644 index 00000000..c85c0a7e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-048-an_overridden_argument].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 48 + line: 174 + name: an overridden argument +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out new file mode 100644 index 00000000..9c2bc61d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-049-an_overridden_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 49 + line: 174 + name: an overridden argument +result: +- !LocationLink + origin_selection_range: + end: + character: 51 + line: 174 + start: + character: 49 + line: 174 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out new file mode 100644 index 00000000..3ad3538d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-054-a_default_value_from_overriden_argument].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 54 + line: 174 + name: a default value from overriden argument +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out new file mode 100644 index 00000000..877c4d3f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-056-a_default_value_from_overriden_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 56 + line: 174 + name: a default value from overriden argument +result: +- !LocationLink + origin_selection_range: + end: + character: 61 + line: 174 + start: + character: 55 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out new file mode 100644 index 00000000..352ed535 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-174-058-a_default_value_from_overriden_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 58 + line: 174 + name: a default value from overriden argument +result: +- !LocationLink + origin_selection_range: + end: + character: 61 + line: 174 + start: + character: 55 + line: 174 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out new file mode 100644 index 00000000..7f2aaed0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 180 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 180 + start: + character: 13 + line: 180 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out new file mode 100644 index 00000000..9f7ff9da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-180-014-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 180 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 180 + start: + character: 13 + line: 180 + target_range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + target_selection_range: + end: + character: 23 + line: 174 + start: + character: 21 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out new file mode 100644 index 00000000..e62f7093 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 182 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 19 + line: 182 + start: + character: 13 + line: 182 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out new file mode 100644 index 00000000..26343b08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-015-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 15 + line: 182 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 19 + line: 182 + start: + character: 13 + line: 182 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out new file mode 100644 index 00000000..cb34057a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-182-017-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 17 + line: 182 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 19 + line: 182 + start: + character: 13 + line: 182 + target_range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + target_selection_range: + end: + character: 36 + line: 174 + start: + character: 30 + line: 174 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out new file mode 100644 index 00000000..66e1b72a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-021-an_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 21 + line: 187 + name: an argument +result: +- !LocationLink + origin_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + target_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out new file mode 100644 index 00000000..05a9f287 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-029-another_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 29 + line: 187 + name: another argument +result: +- !LocationLink + origin_selection_range: + end: + character: 30 + line: 187 + start: + character: 29 + line: 187 + target_range: + end: + character: 31 + line: 187 + start: + character: 27 + line: 187 + target_selection_range: + end: + character: 30 + line: 187 + start: + character: 29 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out new file mode 100644 index 00000000..a13d6445 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-187-034-argument_usage_in_argument].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 34 + line: 187 + name: argument usage in argument +result: +- !LocationLink + origin_selection_range: + end: + character: 35 + line: 187 + start: + character: 34 + line: 187 + target_range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + target_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out new file mode 100644 index 00000000..edeb4504 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-191-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 191 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 14 + line: 191 + start: + character: 13 + line: 191 + target_range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + target_selection_range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out new file mode 100644 index 00000000..f9f75977 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-193-013-argument_usage].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 13 + line: 193 + name: argument usage +result: +- !LocationLink + origin_selection_range: + end: + character: 14 + line: 193 + start: + character: 13 + line: 193 + target_range: + end: + character: 31 + line: 187 + start: + character: 27 + line: 187 + target_selection_range: + end: + character: 30 + line: 187 + start: + character: 29 + line: 187 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out new file mode 100644 index 00000000..a0743929 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-004-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 197 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 197 + start: + character: 4 + line: 197 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out new file mode 100644 index 00000000..dd0ab8d8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-007-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 7 + line: 197 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 197 + start: + character: 4 + line: 197 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out new file mode 100644 index 00000000..08b0d544 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-197-010-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 197 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 197 + start: + character: 4 + line: 197 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out new file mode 100644 index 00000000..4d841947 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-004-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 199 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 199 + start: + character: 4 + line: 199 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out new file mode 100644 index 00000000..daf96590 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-007-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 7 + line: 199 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 199 + start: + character: 4 + line: 199 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out new file mode 100644 index 00000000..6672d1c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-199-010-library_alias].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 10 + line: 199 + name: library alias +result: +- !LocationLink + origin_selection_range: + end: + character: 11 + line: 199 + start: + character: 4 + line: 199 + target_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_selection_range: + end: + character: 89 + line: 14 + start: + character: 82 + line: 14 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out new file mode 100644 index 00000000..d417e0d4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-004-library_alias_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 4 + line: 201 + name: library alias from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 201 + start: + character: 4 + line: 201 + target_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_selection_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out new file mode 100644 index 00000000..52c662e8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-009-library_alias_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 9 + line: 201 + name: library alias from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 201 + start: + character: 4 + line: 201 + target_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_selection_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out new file mode 100644 index 00000000..886126ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-201-014-library_alias_from_resource].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 14 + line: 201 + name: library alias from resource +result: +- !LocationLink + origin_selection_range: + end: + character: 15 + line: 201 + start: + character: 4 + line: 201 + target_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_selection_range: + end: + character: 71 + line: 1 + start: + character: 60 + line: 1 + target_uri: firstresource.resource diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out new file mode 100644 index 00000000..8f408d19 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-051-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 51 + line: 205 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 205 + start: + character: 51 + line: 205 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out new file mode 100644 index 00000000..fc63710a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-053-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 53 + line: 205 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 205 + start: + character: 51 + line: 205 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out new file mode 100644 index 00000000..99b3c42e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-055-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 55 + line: 205 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 205 + start: + character: 51 + line: 205 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out new file mode 100644 index 00000000..c062929c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-064-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 64 + line: 205 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out new file mode 100644 index 00000000..01c73703 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-067-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 67 + line: 205 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out new file mode 100644 index 00000000..9138a62a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-205-069-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 69 + line: 205 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out new file mode 100644 index 00000000..24291cbf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-208-019-an_argument_in_timeout].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 208 + name: an argument in timeout +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 208 + start: + character: 19 + line: 208 + target_range: + end: + character: 28 + line: 213 + start: + character: 19 + line: 213 + target_selection_range: + end: + character: 27 + line: 213 + start: + character: 21 + line: 213 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out new file mode 100644 index 00000000..c07768d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-016-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 16 + line: 210 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out new file mode 100644 index 00000000..e4879ed2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-019-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 19 + line: 210 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out new file mode 100644 index 00000000..e1c07910 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-021-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 210 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out new file mode 100644 index 00000000..602cb6ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-028-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 210 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 210 + start: + character: 28 + line: 210 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out new file mode 100644 index 00000000..6b1ce1d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-030-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 210 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 210 + start: + character: 28 + line: 210 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out new file mode 100644 index 00000000..6abc94c8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-210-032-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 210 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 210 + start: + character: 28 + line: 210 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out new file mode 100644 index 00000000..3951adaa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-051-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 51 + line: 219 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 219 + start: + character: 51 + line: 219 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out new file mode 100644 index 00000000..397adb60 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-053-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 53 + line: 219 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 219 + start: + character: 51 + line: 219 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out new file mode 100644 index 00000000..38ad1c41 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-055-a_global_var_in_doc].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 55 + line: 219 + name: a global var in doc +result: +- !LocationLink + origin_selection_range: + end: + character: 56 + line: 219 + start: + character: 51 + line: 219 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out new file mode 100644 index 00000000..0f54cdfc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-064-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 64 + line: 219 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out new file mode 100644 index 00000000..bd564fe0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-067-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 67 + line: 219 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out new file mode 100644 index 00000000..1f0ea012 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-219-069-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 69 + line: 219 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out new file mode 100644 index 00000000..c0de4a0d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-222-019-an_argument_in_timeout].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 19 + line: 222 + name: an argument in timeout +result: +- !LocationLink + origin_selection_range: + end: + character: 25 + line: 222 + start: + character: 19 + line: 222 + target_range: + end: + character: 28 + line: 218 + start: + character: 19 + line: 218 + target_selection_range: + end: + character: 27 + line: 218 + start: + character: 21 + line: 218 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out new file mode 100644 index 00000000..33d511a9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-016-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 16 + line: 224 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out new file mode 100644 index 00000000..f656a8df --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-019-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 19 + line: 224 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out new file mode 100644 index 00000000..8ac9085d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-021-an_argument_in_tags].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 224 + name: an argument in tags +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out new file mode 100644 index 00000000..23f05931 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-028-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 28 + line: 224 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 224 + start: + character: 28 + line: 224 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out new file mode 100644 index 00000000..cd700261 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-030-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 30 + line: 224 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 224 + start: + character: 28 + line: 224 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out new file mode 100644 index 00000000..6ef9cc6b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_goto_implementation.test_implementation[goto.robot-224-032-an_argument_in_tags].out @@ -0,0 +1,28 @@ +data: !GeneratedTestData + character: 32 + line: 224 + name: an argument in tags +result: +- !LocationLink + origin_selection_range: + end: + character: 33 + line: 224 + start: + character: 28 + line: 224 + target_range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + target_selection_range: + end: + character: 7 + line: 21 + start: + character: 2 + line: 21 + target_uri: goto.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out new file mode 100644 index 00000000..f7b6e3f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-018-library_import_by_module_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 1 + name: library import by module name +result: !Hover + contents: + kind: markdown + value: '### Library *Collections*' + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out new file mode 100644 index 00000000..b7a47bd9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-023-library_import_by_module_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 1 + name: library import by module name +result: !Hover + contents: + kind: markdown + value: '### Library *Collections*' + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out new file mode 100644 index 00000000..5c6a3fa8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-001-028-library_import_by_module_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 28 + line: 1 + name: library import by module name +result: !Hover + contents: + kind: markdown + value: '### Library *Collections*' + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out new file mode 100644 index 00000000..94e46420 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-065-lib_with_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 65 + line: 3 + name: lib with alias +result: !Hover + contents: + kind: markdown + value: '### Library *alibrary*' + range: + end: + character: 74 + line: 3 + start: + character: 65 + line: 3 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out new file mode 100644 index 00000000..4232c0d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-069-lib_with_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 69 + line: 3 + name: lib with alias +result: !Hover + contents: + kind: markdown + value: '### Library *alibrary*' + range: + end: + character: 74 + line: 3 + start: + character: 65 + line: 3 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out new file mode 100644 index 00000000..8672aef2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-003-073-lib_with_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 73 + line: 3 + name: lib with alias +result: !Hover + contents: + kind: markdown + value: '### Library *alibrary*' + range: + end: + character: 74 + line: 3 + start: + character: 65 + line: 3 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out new file mode 100644 index 00000000..93bcc8ea --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-040-Variable_in_library_params].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 40 + line: 5 + name: Variable in library params +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${LIB_ARG}`' + range: + end: + character: 47 + line: 5 + start: + character: 40 + line: 5 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out new file mode 100644 index 00000000..f46f9d17 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-043-Variable_in_library_params].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 43 + line: 5 + name: Variable in library params +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${LIB_ARG}`' + range: + end: + character: 47 + line: 5 + start: + character: 40 + line: 5 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out new file mode 100644 index 00000000..72edc161 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-005-046-Variable_in_library_params].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 46 + line: 5 + name: Variable in library params +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${LIB_ARG}`' + range: + end: + character: 47 + line: 5 + start: + character: 40 + line: 5 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out new file mode 100644 index 00000000..e4dcc073 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-020-variable_in_library_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 7 + name: variable in library import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out new file mode 100644 index 00000000..2e733e60 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-023-variable_in_library_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 7 + name: variable in library import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out new file mode 100644 index 00000000..50373bdc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-025-variable_in_library_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 25 + line: 7 + name: variable in library import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out new file mode 100644 index 00000000..2bd2968a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-035-library_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 35 + line: 7 + name: library import by path name +result: !Hover + contents: + kind: markdown + value: '### Library *myvariables*' + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out new file mode 100644 index 00000000..99b7b2a9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-042-library_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 42 + line: 7 + name: library import by path name +result: !Hover + contents: + kind: markdown + value: '### Library *myvariables*' + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out new file mode 100644 index 00000000..1c93f044 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-007-048-library_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 48 + line: 7 + name: library import by path name +result: !Hover + contents: + kind: markdown + value: '### Library *myvariables*' + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out new file mode 100644 index 00000000..962044dd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-020-variable_in_variables_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 10 + name: variable in variables import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out new file mode 100644 index 00000000..3c4e9f4e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-023-variable_in_variables_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 10 + name: variable in variables import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out new file mode 100644 index 00000000..4c184f51 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-025-variable_in_variables_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 25 + line: 10 + name: variable in variables import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out new file mode 100644 index 00000000..3c6959e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-035-variable_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 35 + line: 10 + name: variable import by path name +result: !Hover + contents: + kind: markdown + value: '### Variables *myvariables*' + range: + end: + character: 49 + line: 10 + start: + character: 18 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out new file mode 100644 index 00000000..cd60e01b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-042-variable_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 42 + line: 10 + name: variable import by path name +result: !Hover + contents: + kind: markdown + value: '### Variables *myvariables*' + range: + end: + character: 49 + line: 10 + start: + character: 18 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out new file mode 100644 index 00000000..72406947 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-010-048-variable_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 48 + line: 10 + name: variable import by path name +result: !Hover + contents: + kind: markdown + value: '### Variables *myvariables*' + range: + end: + character: 49 + line: 10 + start: + character: 18 + line: 10 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out new file mode 100644 index 00000000..2f24d6f3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-020-variable_in_resource_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 13 + name: variable in resource import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out new file mode 100644 index 00000000..af610c2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-023-variable_in_resource_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 13 + name: variable in resource import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out new file mode 100644 index 00000000..fc10805d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-025-variable_in_resource_import].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 25 + line: 13 + name: variable in resource import +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out new file mode 100644 index 00000000..34021892 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-040-resource_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 40 + line: 13 + name: resource import by path name +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 63 + line: 13 + start: + character: 18 + line: 13 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out new file mode 100644 index 00000000..6352a680 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-047-resource_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 47 + line: 13 + name: resource import by path name +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 63 + line: 13 + start: + character: 18 + line: 13 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out new file mode 100644 index 00000000..832c6f58 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-013-053-resource_import_by_path_name].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 53 + line: 13 + name: resource import by path name +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 63 + line: 13 + start: + character: 18 + line: 13 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out new file mode 100644 index 00000000..2312cc31 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-015-unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 19 + name: unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 29 + line: 19 + start: + character: 15 + line: 19 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out new file mode 100644 index 00000000..9d8a3d44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-022-unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 19 + name: unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 29 + line: 19 + start: + character: 15 + line: 19 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out new file mode 100644 index 00000000..cac1fb6c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-028-unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 28 + line: 19 + name: unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 29 + line: 19 + start: + character: 15 + line: 19 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out new file mode 100644 index 00000000..22977a6c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-046-unknown_lib_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 46 + line: 19 + name: unknown lib namespace +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 53 + line: 19 + start: + character: 46 + line: 19 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out new file mode 100644 index 00000000..f3dd781a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-050-unknown_lib_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 50 + line: 19 + name: unknown lib namespace +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 53 + line: 19 + start: + character: 46 + line: 19 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out new file mode 100644 index 00000000..f2a586ec --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-019-053-unknown_lib_namespace].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 53 + line: 19 + name: unknown lib namespace +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out new file mode 100644 index 00000000..35e8eccb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-015-lib_with_errors].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 22 + name: lib with errors +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 32 + line: 22 + start: + character: 15 + line: 22 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out new file mode 100644 index 00000000..21e7e61f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-023-lib_with_errors].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 22 + name: lib with errors +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 32 + line: 22 + start: + character: 15 + line: 22 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out new file mode 100644 index 00000000..a6534705 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-031-lib_with_errors].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 31 + line: 22 + name: lib with errors +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 32 + line: 22 + start: + character: 15 + line: 22 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out new file mode 100644 index 00000000..45eddbb2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-057-lib_with_errors_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 57 + line: 22 + name: lib with errors alias +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 65 + line: 22 + start: + character: 57 + line: 22 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out new file mode 100644 index 00000000..8c642fc6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-061-lib_with_errors_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 61 + line: 22 + name: lib with errors alias +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 65 + line: 22 + start: + character: 57 + line: 22 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out new file mode 100644 index 00000000..deeec03f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-022-064-lib_with_errors_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 64 + line: 22 + name: lib with errors alias +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 65 + line: 22 + start: + character: 57 + line: 22 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out new file mode 100644 index 00000000..c368907d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-015-lib_with_no_errors].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 25 + name: lib with no errors +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 32 + line: 25 + start: + character: 15 + line: 25 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out new file mode 100644 index 00000000..b44d1ffe --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-023-lib_with_no_errors].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 25 + name: lib with no errors +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 32 + line: 25 + start: + character: 15 + line: 25 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out new file mode 100644 index 00000000..a14c323a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-031-lib_with_no_errors].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 31 + line: 25 + name: lib with no errors +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 32 + line: 25 + start: + character: 15 + line: 25 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out new file mode 100644 index 00000000..946ab9dc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-058-lib_with_no_errors_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 58 + line: 25 + name: lib with no errors alias +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 68 + line: 25 + start: + character: 58 + line: 25 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out new file mode 100644 index 00000000..d95eb8d5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-063-lib_with_no_errors_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 63 + line: 25 + name: lib with no errors alias +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 68 + line: 25 + start: + character: 58 + line: 25 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out new file mode 100644 index 00000000..783ac228 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-025-067-lib_with_no_errors_alias].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 67 + line: 25 + name: lib with no errors alias +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 68 + line: 25 + start: + character: 58 + line: 25 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out new file mode 100644 index 00000000..2189dd39 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-002-variable_declaration].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 2 + line: 30 + name: variable declaration +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 7 + line: 30 + start: + character: 2 + line: 30 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out new file mode 100644 index 00000000..8f6fe563 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-004-variable_declaration].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 30 + name: variable declaration +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 7 + line: 30 + start: + character: 2 + line: 30 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out new file mode 100644 index 00000000..a1f1c961 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-006-variable_declaration].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 6 + line: 30 + name: variable declaration +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 7 + line: 30 + start: + character: 2 + line: 30 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out new file mode 100644 index 00000000..f1908c89 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-030-008-not_the_equal_sign].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 8 + line: 30 + name: not the equal sign +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out new file mode 100644 index 00000000..0b1ce0d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-002-variable_declarations].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 2 + line: 33 + name: variable declarations +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `&{A DICT}`' + range: + end: + character: 8 + line: 33 + start: + character: 2 + line: 33 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out new file mode 100644 index 00000000..7e009292 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-005-variable_declarations].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 5 + line: 33 + name: variable declarations +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `&{A DICT}`' + range: + end: + character: 8 + line: 33 + start: + character: 2 + line: 33 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out new file mode 100644 index 00000000..49a7ccc6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-033-007-variable_declarations].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 7 + line: 33 + name: variable declarations +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `&{A DICT}`' + range: + end: + character: 8 + line: 33 + start: + character: 2 + line: 33 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out new file mode 100644 index 00000000..444f042b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-002-no_hover_for_invalid_variable].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 2 + line: 38 + name: no hover for invalid variable +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out new file mode 100644 index 00000000..487757a8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-009-no_hover_for_invalid_variable].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 9 + line: 38 + name: no hover for invalid variable +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out new file mode 100644 index 00000000..ef7994f1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-038-016-no_hover_for_invalid_variable].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 16 + line: 38 + name: no hover for invalid variable +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out new file mode 100644 index 00000000..386208c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-010-complex_var_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 43 + name: complex var expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A}`' + range: + end: + character: 11 + line: 43 + start: + character: 10 + line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out new file mode 100644 index 00000000..c185c8e0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-017-inner_var].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 17 + line: 43 + name: inner var +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${B}`' + range: + end: + character: 18 + line: 43 + start: + character: 17 + line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out new file mode 100644 index 00000000..859bf026 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-043-022-inner_inner_var].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 43 + name: inner inner var +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${D}`' + range: + end: + character: 23 + line: 43 + start: + character: 22 + line: 43 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out new file mode 100644 index 00000000..ee58e726 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-010-complex_var_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 48 + name: complex var expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A}`' + range: + end: + character: 11 + line: 48 + start: + character: 10 + line: 48 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out new file mode 100644 index 00000000..5bc0902d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-014-inner_var].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 48 + name: inner var +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out new file mode 100644 index 00000000..cc96e0f9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-018-inner_var].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 18 + line: 48 + name: inner var +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out new file mode 100644 index 00000000..fc839a6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-022-inner_inner_var].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 22 + line: 48 + name: inner inner var +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out new file mode 100644 index 00000000..66392851 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-029-outer_var].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 48 + name: outer var +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${D}`' + range: + end: + character: 30 + line: 48 + start: + character: 29 + line: 48 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out new file mode 100644 index 00000000..d211ca6b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-048-036-extra_var].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 36 + line: 48 + name: extra var +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${C}`' + range: + end: + character: 37 + line: 48 + start: + character: 36 + line: 48 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out new file mode 100644 index 00000000..9ebcc810 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-002-number_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 2 + line: 58 + name: number variable +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${F}`' + range: + end: + character: 3 + line: 58 + start: + character: 2 + line: 58 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out new file mode 100644 index 00000000..3fbacb08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-010-number_expression].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 10 + line: 58 + name: number expression +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out new file mode 100644 index 00000000..d94b8872 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-011-number_expression].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 11 + line: 58 + name: number expression +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out new file mode 100644 index 00000000..a34ef75e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-058-012-number_expression].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 58 + name: number expression +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out new file mode 100644 index 00000000..83533625 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-013-Keyword_in_Setup].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 64 + name: Keyword in Setup +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 16 + line: 64 + start: + character: 13 + line: 64 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out new file mode 100644 index 00000000..02afc4cf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-014-Keyword_in_Setup].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 64 + name: Keyword in Setup +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 16 + line: 64 + start: + character: 13 + line: 64 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out new file mode 100644 index 00000000..94a2af40 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-064-015-Keyword_in_Setup].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 64 + name: Keyword in Setup +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 16 + line: 64 + start: + character: 13 + line: 64 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out new file mode 100644 index 00000000..c012e658 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-016-Namespace_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 66 + name: Namespace in Teardown +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 23 + line: 66 + start: + character: 16 + line: 66 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out new file mode 100644 index 00000000..18cc8449 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-019-Namespace_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 19 + line: 66 + name: Namespace in Teardown +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 23 + line: 66 + start: + character: 16 + line: 66 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out new file mode 100644 index 00000000..eaaf334b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-022-Namespace_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 66 + name: Namespace in Teardown +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 23 + line: 66 + start: + character: 16 + line: 66 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out new file mode 100644 index 00000000..d72f399e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-024-Keyword_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 24 + line: 66 + name: Keyword in Teardown +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 27 + line: 66 + start: + character: 24 + line: 66 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out new file mode 100644 index 00000000..2cf6db31 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-025-Keyword_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 25 + line: 66 + name: Keyword in Teardown +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 27 + line: 66 + start: + character: 24 + line: 66 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out new file mode 100644 index 00000000..7b1321e1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-066-026-Keyword_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 26 + line: 66 + name: Keyword in Teardown +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 27 + line: 66 + start: + character: 24 + line: 66 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out new file mode 100644 index 00000000..753931c6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-012-no_hover_for_invalid_variable_reference].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 72 + name: no hover for invalid variable reference +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out new file mode 100644 index 00000000..98a12e52 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-020-no_hover_for_invalid_variable_reference].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 20 + line: 72 + name: no hover for invalid variable reference +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out new file mode 100644 index 00000000..69dd1ee5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-072-027-no_hover_for_invalid_variable_reference].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 27 + line: 72 + name: no hover for invalid variable reference +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out new file mode 100644 index 00000000..8e694278 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-004-Keyword_from_Library].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 75 + name: Keyword from Library +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out new file mode 100644 index 00000000..901be732 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-005-Keyword_from_Library].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 5 + line: 75 + name: Keyword from Library +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out new file mode 100644 index 00000000..0f4dd691 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-075-006-Keyword_from_Library].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 6 + line: 75 + name: Keyword from Library +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out new file mode 100644 index 00000000..73999c1d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-004-namespace_before_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 78 + name: namespace before keyword +result: !Hover + contents: + kind: markdown + value: '### Library *Collections*' + range: + end: + character: 15 + line: 78 + start: + character: 4 + line: 78 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out new file mode 100644 index 00000000..d761222e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-009-namespace_before_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 78 + name: namespace before keyword +result: !Hover + contents: + kind: markdown + value: '### Library *Collections*' + range: + end: + character: 15 + line: 78 + start: + character: 4 + line: 78 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out new file mode 100644 index 00000000..5e1b5c5d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-014-namespace_before_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 78 + name: namespace before keyword +result: !Hover + contents: + kind: markdown + value: '### Library *Collections*' + range: + end: + character: 15 + line: 78 + start: + character: 4 + line: 78 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out new file mode 100644 index 00000000..2f7c0826 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-016-Keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 78 + name: Keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log Dictionary*' + range: + end: + character: 30 + line: 78 + start: + character: 16 + line: 78 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out new file mode 100644 index 00000000..9438c510 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-023-Keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 78 + name: Keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log Dictionary*' + range: + end: + character: 30 + line: 78 + start: + character: 16 + line: 78 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out new file mode 100644 index 00000000..97b4c83b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-078-029-Keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 78 + name: Keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log Dictionary*' + range: + end: + character: 30 + line: 78 + start: + character: 16 + line: 78 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out new file mode 100644 index 00000000..a0a6ee96 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-012-FOR_loop_variable_declaration].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 81 + name: FOR loop variable declaration +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out new file mode 100644 index 00000000..013ca1de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-014-FOR_loop_variable_declaration].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 81 + name: FOR loop variable declaration +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${key}`' + range: + end: + character: 16 + line: 81 + start: + character: 13 + line: 81 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out new file mode 100644 index 00000000..e8c12191 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-081-015-FOR_loop_variable_declaration].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 81 + name: FOR loop variable declaration +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${key}`' + range: + end: + character: 16 + line: 81 + start: + character: 13 + line: 81 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out new file mode 100644 index 00000000..4f46c7cc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-008-Keyword_in_FOR_loop].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 8 + line: 83 + name: Keyword in FOR loop +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 83 + start: + character: 8 + line: 83 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out new file mode 100644 index 00000000..ba68623d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-009-Keyword_in_FOR_loop].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 83 + name: Keyword in FOR loop +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 83 + start: + character: 8 + line: 83 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out new file mode 100644 index 00000000..efcd8f3b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-083-010-Keyword_in_FOR_loop].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 83 + name: Keyword in FOR loop +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 83 + start: + character: 8 + line: 83 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out new file mode 100644 index 00000000..0543391e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-004-BuiltIn_Keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 86 + name: BuiltIn Keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out new file mode 100644 index 00000000..e66df0b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-005-BuiltIn_Keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 5 + line: 86 + name: BuiltIn Keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out new file mode 100644 index 00000000..aeea8472 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-006-BuiltIn_Keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 6 + line: 86 + name: BuiltIn Keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out new file mode 100644 index 00000000..b96c7a4c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-013-Command_line_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 86 + name: Command line variable +result: !Hover + contents: + kind: markdown + value: '### Global Variable [Command Line] `${CMD_VAR}`' + range: + end: + character: 20 + line: 86 + start: + character: 13 + line: 86 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out new file mode 100644 index 00000000..63ef68b1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-016-Command_line_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 86 + name: Command line variable +result: !Hover + contents: + kind: markdown + value: '### Global Variable [Command Line] `${CMD_VAR}`' + range: + end: + character: 20 + line: 86 + start: + character: 13 + line: 86 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out new file mode 100644 index 00000000..34f9dcbc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-086-019-Command_line_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 19 + line: 86 + name: Command line variable +result: !Hover + contents: + kind: markdown + value: '### Global Variable [Command Line] `${CMD_VAR}`' + range: + end: + character: 20 + line: 86 + start: + character: 13 + line: 86 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out new file mode 100644 index 00000000..361a9e08 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-001-Spaces].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 1 + line: 89 + name: Spaces +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out new file mode 100644 index 00000000..1087544d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-002-Spaces].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 2 + line: 89 + name: Spaces +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out new file mode 100644 index 00000000..a81111a7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-003-Spaces].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 3 + line: 89 + name: Spaces +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out new file mode 100644 index 00000000..dc48f37f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-013-BuiltIn_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 89 + name: BuiltIn variable +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out new file mode 100644 index 00000000..03ddc644 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-016-BuiltIn_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 89 + name: BuiltIn variable +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out new file mode 100644 index 00000000..274d1316 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-089-018-BuiltIn_variable].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 89 + name: BuiltIn variable +result: !Hover + contents: + kind: markdown + value: '### Builtin Variable `${CURDIR}`' + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out new file mode 100644 index 00000000..84d86ee4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-013-variable_from_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 92 + name: variable from lib +result: !Hover + contents: + kind: markdown + value: '### Suite Variable [Imported] `${A_VAR_FROM_LIB}`' + range: + end: + character: 27 + line: 92 + start: + character: 13 + line: 92 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out new file mode 100644 index 00000000..2d637e5a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-020-variable_from_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 92 + name: variable from lib +result: !Hover + contents: + kind: markdown + value: '### Suite Variable [Imported] `${A_VAR_FROM_LIB}`' + range: + end: + character: 27 + line: 92 + start: + character: 13 + line: 92 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out new file mode 100644 index 00000000..84247c4e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-092-026-variable_from_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 26 + line: 92 + name: variable from lib +result: !Hover + contents: + kind: markdown + value: '### Suite Variable [Imported] `${A_VAR_FROM_LIB}`' + range: + end: + character: 27 + line: 92 + start: + character: 13 + line: 92 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out new file mode 100644 index 00000000..8c5e2676 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-004-Keyword_from_resource].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 95 + name: Keyword from resource +result: !Hover + contents: + kind: markdown + value: '### Keyword *do something in a resource*' + range: + end: + character: 30 + line: 95 + start: + character: 4 + line: 95 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out new file mode 100644 index 00000000..6f92bff0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-017-Keyword_from_resource].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 17 + line: 95 + name: Keyword from resource +result: !Hover + contents: + kind: markdown + value: '### Keyword *do something in a resource*' + range: + end: + character: 30 + line: 95 + start: + character: 4 + line: 95 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out new file mode 100644 index 00000000..683f6996 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-095-029-Keyword_from_resource].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 95 + name: Keyword from resource +result: !Hover + contents: + kind: markdown + value: '### Keyword *do something in a resource*' + range: + end: + character: 30 + line: 95 + start: + character: 4 + line: 95 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out new file mode 100644 index 00000000..f2989a2d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-004-Namespace_from_resource].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 98 + name: Namespace from resource +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 17 + line: 98 + start: + character: 4 + line: 98 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out new file mode 100644 index 00000000..2556a6e3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-010-Namespace_from_resource].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 98 + name: Namespace from resource +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 17 + line: 98 + start: + character: 4 + line: 98 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out new file mode 100644 index 00000000..ac0059c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-016-Namespace_from_resource].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 98 + name: Namespace from resource +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 17 + line: 98 + start: + character: 4 + line: 98 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out new file mode 100644 index 00000000..373b7072 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-018-KeywordCall_from_resource_with_Namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 98 + name: KeywordCall from resource with Namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *do something in a resource*' + range: + end: + character: 44 + line: 98 + start: + character: 18 + line: 98 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out new file mode 100644 index 00000000..7d037945 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-031-KeywordCall_from_resource_with_Namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 31 + line: 98 + name: KeywordCall from resource with Namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *do something in a resource*' + range: + end: + character: 44 + line: 98 + start: + character: 18 + line: 98 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out new file mode 100644 index 00000000..e51bd76f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-098-043-KeywordCall_from_resource_with_Namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 43 + line: 98 + name: KeywordCall from resource with Namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *do something in a resource*' + range: + end: + character: 44 + line: 98 + start: + character: 18 + line: 98 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out new file mode 100644 index 00000000..9389f921 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-001-Test_Case].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 1 + line: 102 + name: Test Case +result: !Hover + contents: + kind: markdown + value: '## Test Case *second*' + range: + end: + character: 6 + line: 102 + start: + character: 0 + line: 102 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out new file mode 100644 index 00000000..f87fabba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-003-Test_Case].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 3 + line: 102 + name: Test Case +result: !Hover + contents: + kind: markdown + value: '## Test Case *second*' + range: + end: + character: 6 + line: 102 + start: + character: 0 + line: 102 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out new file mode 100644 index 00000000..f7bf9a1d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-102-005-Test_Case].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 5 + line: 102 + name: Test Case +result: !Hover + contents: + kind: markdown + value: '## Test Case *second*' + range: + end: + character: 6 + line: 102 + start: + character: 0 + line: 102 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out new file mode 100644 index 00000000..7f78aa0f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-018-Namespace_in_Template].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 104 + name: Namespace in Template +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 25 + line: 104 + start: + character: 18 + line: 104 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out new file mode 100644 index 00000000..738ea854 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-021-Namespace_in_Template].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 104 + name: Namespace in Template +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 25 + line: 104 + start: + character: 18 + line: 104 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out new file mode 100644 index 00000000..a40f9ab8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-024-Namespace_in_Template].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 24 + line: 104 + name: Namespace in Template +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 25 + line: 104 + start: + character: 18 + line: 104 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out new file mode 100644 index 00000000..e598cd1e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-026-Keyword_in_Template].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 26 + line: 104 + name: Keyword in Template +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 29 + line: 104 + start: + character: 26 + line: 104 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out new file mode 100644 index 00000000..4460a904 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-027-Keyword_in_Template].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 27 + line: 104 + name: Keyword in Template +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 29 + line: 104 + start: + character: 26 + line: 104 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out new file mode 100644 index 00000000..5fe01b09 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-104-028-Keyword_in_Template].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 28 + line: 104 + name: Keyword in Template +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 29 + line: 104 + start: + character: 26 + line: 104 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out new file mode 100644 index 00000000..3473d1f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-006-Keyword_assignement].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 6 + line: 111 + name: Keyword assignement +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${result}`' + range: + end: + character: 12 + line: 111 + start: + character: 6 + line: 111 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out new file mode 100644 index 00000000..c35f28b2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-009-Keyword_assignement].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 111 + name: Keyword assignement +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${result}`' + range: + end: + character: 12 + line: 111 + start: + character: 6 + line: 111 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out new file mode 100644 index 00000000..248c9d2e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-111-011-Keyword_assignement].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 11 + line: 111 + name: Keyword assignement +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${result}`' + range: + end: + character: 12 + line: 111 + start: + character: 6 + line: 111 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out new file mode 100644 index 00000000..a0cc2039 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-006-Keyword_assignment_with_equals_sign].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 6 + line: 115 + name: Keyword assignment with equals sign +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${result}`' + range: + end: + character: 12 + line: 115 + start: + character: 6 + line: 115 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out new file mode 100644 index 00000000..22d7330b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-009-Keyword_assignment_with_equals_sign].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 115 + name: Keyword assignment with equals sign +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${result}`' + range: + end: + character: 12 + line: 115 + start: + character: 6 + line: 115 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out new file mode 100644 index 00000000..0cf6fd9f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-115-011-Keyword_assignment_with_equals_sign].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 11 + line: 115 + name: Keyword assignment with equals sign +result: !Hover + contents: + kind: markdown + value: '### Local Variable `${result}`' + range: + end: + character: 12 + line: 115 + start: + character: 6 + line: 115 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out new file mode 100644 index 00000000..8dea1771 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-126-010-variable_in_if].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 126 + name: variable in if +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A}`' + range: + end: + character: 11 + line: 126 + start: + character: 10 + line: 126 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out new file mode 100644 index 00000000..f9e702b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-129-017-variable_in_else_if].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 17 + line: 129 + name: variable in else if +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${B}`' + range: + end: + character: 18 + line: 129 + start: + character: 17 + line: 129 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out new file mode 100644 index 00000000..06c8e8e7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-134-009-variable_in_if_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 134 + name: variable in if expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A}`' + range: + end: + character: 10 + line: 134 + start: + character: 9 + line: 134 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out new file mode 100644 index 00000000..9e1c30c5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-137-016-variable_in_else_if_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 137 + name: variable in else if expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${B}`' + range: + end: + character: 17 + line: 137 + start: + character: 16 + line: 137 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out new file mode 100644 index 00000000..7ab389a9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-010-variable_in_inline_if_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 142 + name: variable in inline if expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A}`' + range: + end: + character: 11 + line: 142 + start: + character: 10 + line: 142 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..d59f1693 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-142-042-variable_in_inline_else_if_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 42 + line: 142 + name: variable in inline else if expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${B}`' + range: + end: + character: 43 + line: 142 + start: + character: 42 + line: 142 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out new file mode 100644 index 00000000..6e4d2707 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-009-variable_in_inline_if_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 146 + name: variable in inline if expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A}`' + range: + end: + character: 10 + line: 146 + start: + character: 9 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out new file mode 100644 index 00000000..f15b88c8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-146-039-variable_in_inline_else_if_expression].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 39 + line: 146 + name: variable in inline else if expression +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${B}`' + range: + end: + character: 40 + line: 146 + start: + character: 39 + line: 146 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out new file mode 100644 index 00000000..d2335c5a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-015-BDD_Given_in_setup].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 15 + line: 151 + name: BDD Given in setup +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out new file mode 100644 index 00000000..d329fcf7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-017-BDD_Given_in_setup].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 17 + line: 151 + name: BDD Given in setup +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out new file mode 100644 index 00000000..37f7c3d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-019-BDD_Given_in_setup].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 19 + line: 151 + name: BDD Given in setup +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out new file mode 100644 index 00000000..f9eefefa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-021-BDD_Keyword_in_setup].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 151 + name: BDD Keyword in setup +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 24 + line: 151 + start: + character: 21 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out new file mode 100644 index 00000000..17503024 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-022-BDD_Keyword_in_setup].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 151 + name: BDD Keyword in setup +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 24 + line: 151 + start: + character: 21 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out new file mode 100644 index 00000000..33083e1c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-151-023-BDD_Keyword_in_setup].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 151 + name: BDD Keyword in setup +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 24 + line: 151 + start: + character: 21 + line: 151 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out new file mode 100644 index 00000000..7a7676d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-018-BDD_Then_in_Teardown].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 18 + line: 154 + name: BDD Then in Teardown +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out new file mode 100644 index 00000000..d66e1c5b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-020-BDD_Then_in_Teardown].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 20 + line: 154 + name: BDD Then in Teardown +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out new file mode 100644 index 00000000..00d08ef0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-021-BDD_Then_in_Teardown].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 154 + name: BDD Then in Teardown +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out new file mode 100644 index 00000000..c1680752 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-023-BDD_Namespace_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 154 + name: BDD Namespace in Teardown +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 30 + line: 154 + start: + character: 23 + line: 154 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out new file mode 100644 index 00000000..d8372c02 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-026-BDD_Namespace_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 26 + line: 154 + name: BDD Namespace in Teardown +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 30 + line: 154 + start: + character: 23 + line: 154 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out new file mode 100644 index 00000000..24222517 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-029-BDD_Namespace_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 154 + name: BDD Namespace in Teardown +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 30 + line: 154 + start: + character: 23 + line: 154 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out new file mode 100644 index 00000000..e3f9d47e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-031-BDD_Keyword_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 31 + line: 154 + name: BDD Keyword in Teardown +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 34 + line: 154 + start: + character: 31 + line: 154 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out new file mode 100644 index 00000000..405e83a6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-032-BDD_Keyword_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 32 + line: 154 + name: BDD Keyword in Teardown +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 34 + line: 154 + start: + character: 31 + line: 154 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out new file mode 100644 index 00000000..fdfa8f32 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-154-033-BDD_Keyword_in_Teardown].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 33 + line: 154 + name: BDD Keyword in Teardown +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 34 + line: 154 + start: + character: 31 + line: 154 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out new file mode 100644 index 00000000..1a5082d8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-004-BDD_Given].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 158 + name: BDD Given +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out new file mode 100644 index 00000000..9f07b580 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-006-BDD_Given].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 158 + name: BDD Given +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out new file mode 100644 index 00000000..d7941ed2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-008-BDD_Given].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 8 + line: 158 + name: BDD Given +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out new file mode 100644 index 00000000..58626da3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-010-BDD_Given_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 158 + name: BDD Given keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 13 + line: 158 + start: + character: 10 + line: 158 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out new file mode 100644 index 00000000..ee4c7427 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-011-BDD_Given_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 11 + line: 158 + name: BDD Given keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 13 + line: 158 + start: + character: 10 + line: 158 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out new file mode 100644 index 00000000..9329f041 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-158-012-BDD_Given_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 12 + line: 158 + name: BDD Given keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 13 + line: 158 + start: + character: 10 + line: 158 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out new file mode 100644 index 00000000..fec254ae --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-004-BDD_When].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 161 + name: BDD When +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out new file mode 100644 index 00000000..d23e7bb7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-006-BDD_When].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 161 + name: BDD When +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out new file mode 100644 index 00000000..af14a51d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-007-BDD_When].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 161 + name: BDD When +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out new file mode 100644 index 00000000..59903c7e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-009-BDD_When_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 161 + name: BDD When keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 12 + line: 161 + start: + character: 9 + line: 161 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out new file mode 100644 index 00000000..6ac61862 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-010-BDD_When_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 161 + name: BDD When keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 12 + line: 161 + start: + character: 9 + line: 161 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out new file mode 100644 index 00000000..656b2171 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-161-011-BDD_When_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 11 + line: 161 + name: BDD When keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 12 + line: 161 + start: + character: 9 + line: 161 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out new file mode 100644 index 00000000..6bfee422 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-004-BDD_And].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 164 + name: BDD And +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out new file mode 100644 index 00000000..329faabf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-005-BDD_And].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 5 + line: 164 + name: BDD And +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out new file mode 100644 index 00000000..e6bc540a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-006-BDD_And].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 164 + name: BDD And +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out new file mode 100644 index 00000000..ec15dd2f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-008-BDD_And_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 8 + line: 164 + name: BDD And keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 164 + start: + character: 8 + line: 164 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out new file mode 100644 index 00000000..a07cdcfa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-009-BDD_And_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 164 + name: BDD And keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 164 + start: + character: 8 + line: 164 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out new file mode 100644 index 00000000..b2dacc40 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-164-010-BDD_And_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 164 + name: BDD And keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 164 + start: + character: 8 + line: 164 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out new file mode 100644 index 00000000..cdb11b6e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-004-BDD_Then].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 167 + name: BDD Then +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out new file mode 100644 index 00000000..244def11 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-006-BDD_Then].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 167 + name: BDD Then +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out new file mode 100644 index 00000000..0470b0d0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-007-BDD_Then].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 167 + name: BDD Then +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out new file mode 100644 index 00000000..69e25e4f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-008-BDD_Then_keyword].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 8 + line: 167 + name: BDD Then keyword +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out new file mode 100644 index 00000000..fb0d5452 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-009-BDD_Then_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 167 + name: BDD Then keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 12 + line: 167 + start: + character: 9 + line: 167 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out new file mode 100644 index 00000000..62ff8816 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-167-010-BDD_Then_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 167 + name: BDD Then keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 12 + line: 167 + start: + character: 9 + line: 167 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out new file mode 100644 index 00000000..02e0b2de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-004-BDD_But].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 170 + name: BDD But +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out new file mode 100644 index 00000000..29843211 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-005-BDD_But].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 5 + line: 170 + name: BDD But +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out new file mode 100644 index 00000000..2f12eb80 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-006-BDD_But].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 170 + name: BDD But +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out new file mode 100644 index 00000000..2cfdb194 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-008-BDD_But_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 8 + line: 170 + name: BDD But keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out new file mode 100644 index 00000000..5a945519 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-009-BDD_But_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 170 + name: BDD But keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out new file mode 100644 index 00000000..09e8af4a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-170-010-BDD_But_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 170 + name: BDD But keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out new file mode 100644 index 00000000..c1e46448 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-004-BDD_given_with_namespace].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 173 + name: BDD given with namespace +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out new file mode 100644 index 00000000..2925dc86 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-006-BDD_given_with_namespace].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 173 + name: BDD given with namespace +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out new file mode 100644 index 00000000..d146c384 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-008-BDD_given_with_namespace].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 8 + line: 173 + name: BDD given with namespace +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out new file mode 100644 index 00000000..a6d915c6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-010-BDD_namespace_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 173 + name: BDD namespace with namespace +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 17 + line: 173 + start: + character: 10 + line: 173 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out new file mode 100644 index 00000000..5a6369d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-013-BDD_namespace_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 173 + name: BDD namespace with namespace +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 17 + line: 173 + start: + character: 10 + line: 173 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out new file mode 100644 index 00000000..eb5f21fb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-016-BDD_namespace_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 173 + name: BDD namespace with namespace +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 17 + line: 173 + start: + character: 10 + line: 173 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out new file mode 100644 index 00000000..1d9317a0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-018-BDD_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 173 + name: BDD keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 21 + line: 173 + start: + character: 18 + line: 173 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out new file mode 100644 index 00000000..e07bd7a1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-019-BDD_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 19 + line: 173 + name: BDD keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 21 + line: 173 + start: + character: 18 + line: 173 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out new file mode 100644 index 00000000..693a4a9b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-173-020-BDD_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 173 + name: BDD keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 21 + line: 173 + start: + character: 18 + line: 173 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..b7812bee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-037-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 37 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 40 + line: 178 + start: + character: 37 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..64e46cd7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-038-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 38 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 40 + line: 178 + start: + character: 37 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..4c329afc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-039-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 39 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 40 + line: 178 + start: + character: 37 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..bc2e7898 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-062-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 62 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 65 + line: 178 + start: + character: 62 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..b8d5f590 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-063-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 63 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 65 + line: 178 + start: + character: 62 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..8973487e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-064-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 64 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 65 + line: 178 + start: + character: 62 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..744df041 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-079-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 79 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 82 + line: 178 + start: + character: 79 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..ca33b22a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-080-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 80 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 82 + line: 178 + start: + character: 79 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out new file mode 100644 index 00000000..2706a1d0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-178-081-BDD_Given_in_run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 81 + line: 178 + name: BDD Given in run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 82 + line: 178 + start: + character: 79 + line: 178 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out new file mode 100644 index 00000000..3596bb0f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-051-BDD_Given_namespace_in_run_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 51 + line: 183 + name: BDD Given namespace in run keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 58 + line: 183 + start: + character: 51 + line: 183 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out new file mode 100644 index 00000000..73e031b3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-054-BDD_Given_namespace_in_run_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 54 + line: 183 + name: BDD Given namespace in run keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 58 + line: 183 + start: + character: 51 + line: 183 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out new file mode 100644 index 00000000..11c16e69 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-057-BDD_Given_namespace_in_run_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 57 + line: 183 + name: BDD Given namespace in run keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Library *BuiltIn*' + range: + end: + character: 58 + line: 183 + start: + character: 51 + line: 183 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out new file mode 100644 index 00000000..9d127c86 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-059-BDD_Given_keyword_in_run_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 59 + line: 183 + name: BDD Given keyword in run keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 62 + line: 183 + start: + character: 59 + line: 183 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out new file mode 100644 index 00000000..81110ca1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-060-BDD_Given_keyword_in_run_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 60 + line: 183 + name: BDD Given keyword in run keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 62 + line: 183 + start: + character: 59 + line: 183 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out new file mode 100644 index 00000000..dd2ecf43 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-183-061-BDD_Given_keyword_in_run_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 61 + line: 183 + name: BDD Given keyword in run keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 62 + line: 183 + start: + character: 59 + line: 183 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out new file mode 100644 index 00000000..07f18504 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-004-keyword_with_dot].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 193 + name: keyword with dot +result: !Hover + contents: + kind: markdown + value: '### Keyword *do.sell fish*' + range: + end: + character: 16 + line: 193 + start: + character: 4 + line: 193 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out new file mode 100644 index 00000000..b4becab4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-010-keyword_with_dot].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 193 + name: keyword with dot +result: !Hover + contents: + kind: markdown + value: '### Keyword *do.sell fish*' + range: + end: + character: 16 + line: 193 + start: + character: 4 + line: 193 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out new file mode 100644 index 00000000..016c0310 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-193-015-keyword_with_dot].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 193 + name: keyword with dot +result: !Hover + contents: + kind: markdown + value: '### Keyword *do.sell fish*' + range: + end: + character: 16 + line: 193 + start: + character: 4 + line: 193 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out new file mode 100644 index 00000000..f498e8b4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-004-namespace_in_keyword_with_dot].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 195 + name: namespace in keyword with dot +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 17 + line: 195 + start: + character: 4 + line: 195 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out new file mode 100644 index 00000000..3f32bda9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-010-namespace_in_keyword_with_dot].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 195 + name: namespace in keyword with dot +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 17 + line: 195 + start: + character: 4 + line: 195 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out new file mode 100644 index 00000000..655fb5ed --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-016-namespace_in_keyword_with_dot].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 16 + line: 195 + name: namespace in keyword with dot +result: !Hover + contents: + kind: markdown + value: '### Resource *firstresource*' + range: + end: + character: 17 + line: 195 + start: + character: 4 + line: 195 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out new file mode 100644 index 00000000..f0bb0fa4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-018-keyword_with_dot_after_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 195 + name: keyword with dot after namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *do.sell fish*' + range: + end: + character: 30 + line: 195 + start: + character: 18 + line: 195 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out new file mode 100644 index 00000000..e0040932 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-024-keyword_with_dot_after_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 24 + line: 195 + name: keyword with dot after namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *do.sell fish*' + range: + end: + character: 30 + line: 195 + start: + character: 18 + line: 195 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out new file mode 100644 index 00000000..ee9a1cd4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-195-029-keyword_with_dot_after_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 195 + name: keyword with dot after namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *do.sell fish*' + range: + end: + character: 30 + line: 195 + start: + character: 18 + line: 195 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out new file mode 100644 index 00000000..f54bb49f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-004-duplicated_keyword_a].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 200 + name: duplicated keyword a +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Resource Keyword A*' + range: + end: + character: 24 + line: 200 + start: + character: 4 + line: 200 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out new file mode 100644 index 00000000..9ac3a9e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-014-duplicated_keyword_a].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 200 + name: duplicated keyword a +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Resource Keyword A*' + range: + end: + character: 24 + line: 200 + start: + character: 4 + line: 200 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out new file mode 100644 index 00000000..9d888010 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-200-023-duplicated_keyword_a].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 200 + name: duplicated keyword a +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Resource Keyword A*' + range: + end: + character: 24 + line: 200 + start: + character: 4 + line: 200 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out new file mode 100644 index 00000000..ffb2179e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-004-duplicated_keyword_b].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 202 + name: duplicated keyword b +result: !Hover + contents: + kind: markdown + value: '### Keyword *a resource keyword B*' + range: + end: + character: 24 + line: 202 + start: + character: 4 + line: 202 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out new file mode 100644 index 00000000..d3d2192f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-014-duplicated_keyword_b].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 202 + name: duplicated keyword b +result: !Hover + contents: + kind: markdown + value: '### Keyword *a resource keyword B*' + range: + end: + character: 24 + line: 202 + start: + character: 4 + line: 202 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out new file mode 100644 index 00000000..72893191 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-202-023-duplicated_keyword_b].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 202 + name: duplicated keyword b +result: !Hover + contents: + kind: markdown + value: '### Keyword *a resource keyword B*' + range: + end: + character: 24 + line: 202 + start: + character: 4 + line: 202 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out new file mode 100644 index 00000000..ed74fc23 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-004-duplicated_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 204 + name: duplicated keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *duplicated keyword*' + range: + end: + character: 22 + line: 204 + start: + character: 4 + line: 204 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out new file mode 100644 index 00000000..6015c298 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-013-duplicated_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 204 + name: duplicated keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *duplicated keyword*' + range: + end: + character: 22 + line: 204 + start: + character: 4 + line: 204 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out new file mode 100644 index 00000000..059afacd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-204-021-duplicated_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 204 + name: duplicated keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *duplicated keyword*' + range: + end: + character: 22 + line: 204 + start: + character: 4 + line: 204 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out new file mode 100644 index 00000000..8401e302 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-004-duplicated_keyword_a_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 206 + name: duplicated keyword a with namespace +result: !Hover + contents: + kind: markdown + value: '### Resource *duplicated*' + range: + end: + character: 14 + line: 206 + start: + character: 4 + line: 206 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out new file mode 100644 index 00000000..10763153 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-019-duplicated_keyword_a_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 19 + line: 206 + name: duplicated keyword a with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Resource Keyword A*' + range: + end: + character: 35 + line: 206 + start: + character: 15 + line: 206 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out new file mode 100644 index 00000000..92bcbd06 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-206-034-duplicated_keyword_a_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 34 + line: 206 + name: duplicated keyword a with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Resource Keyword A*' + range: + end: + character: 35 + line: 206 + start: + character: 15 + line: 206 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out new file mode 100644 index 00000000..6bf07c19 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-004-duplicated_keyword_b_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 208 + name: duplicated keyword b with namespace +result: !Hover + contents: + kind: markdown + value: '### Resource *duplicated*' + range: + end: + character: 14 + line: 208 + start: + character: 4 + line: 208 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out new file mode 100644 index 00000000..4ea49a13 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-019-duplicated_keyword_b_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 19 + line: 208 + name: duplicated keyword b with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *a resource keyword B*' + range: + end: + character: 35 + line: 208 + start: + character: 15 + line: 208 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out new file mode 100644 index 00000000..9fdf9c80 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-208-034-duplicated_keyword_b_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 34 + line: 208 + name: duplicated keyword b with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *a resource keyword B*' + range: + end: + character: 35 + line: 208 + start: + character: 15 + line: 208 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out new file mode 100644 index 00000000..1ee75eae --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-004-duplicated_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 210 + name: duplicated keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Resource *duplicated*' + range: + end: + character: 14 + line: 210 + start: + character: 4 + line: 210 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out new file mode 100644 index 00000000..e51f124f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-018-duplicated_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 18 + line: 210 + name: duplicated keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *duplicated keyword*' + range: + end: + character: 33 + line: 210 + start: + character: 15 + line: 210 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out new file mode 100644 index 00000000..61c90ab3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-210-032-duplicated_keyword_with_namespace].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 32 + line: 210 + name: duplicated keyword with namespace +result: !Hover + contents: + kind: markdown + value: '### Keyword *duplicated keyword*' + range: + end: + character: 33 + line: 210 + start: + character: 15 + line: 210 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out new file mode 100644 index 00000000..1077dbe3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-004-a_keyword_with_emoji].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 214 + name: a keyword with emoji +result: !Hover + contents: + kind: markdown + value: "### Keyword *\U0001F916\U0001F916*" + range: + end: + character: 6 + line: 214 + start: + character: 4 + line: 214 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out new file mode 100644 index 00000000..1281be0d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-214-005-a_keyword_with_emoji].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 5 + line: 214 + name: a keyword with emoji +result: !Hover + contents: + kind: markdown + value: "### Keyword *\U0001F916\U0001F916*" + range: + end: + character: 6 + line: 214 + start: + character: 4 + line: 214 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out new file mode 100644 index 00000000..a1cf042c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-004-namespace_of_unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 218 + name: namespace of unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 11 + line: 218 + start: + character: 4 + line: 218 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out new file mode 100644 index 00000000..04495a4f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-007-namespace_of_unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 7 + line: 218 + name: namespace of unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 11 + line: 218 + start: + character: 4 + line: 218 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out new file mode 100644 index 00000000..92f37e1f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-010-namespace_of_unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 218 + name: namespace of unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 11 + line: 218 + start: + character: 4 + line: 218 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out new file mode 100644 index 00000000..59955348 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-012-keyword_of_unknown_lib].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 218 + name: keyword of unknown lib +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out new file mode 100644 index 00000000..f7b1e66a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-020-keyword_of_unknown_lib].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 20 + line: 218 + name: keyword of unknown lib +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out new file mode 100644 index 00000000..7d4e43aa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-218-027-keyword_of_unknown_lib].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 27 + line: 218 + name: keyword of unknown lib +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out new file mode 100644 index 00000000..03ef3f97 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-004-namespace_of_unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 221 + name: namespace of unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 11 + line: 221 + start: + character: 4 + line: 221 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out new file mode 100644 index 00000000..f23b295f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-007-namespace_of_unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 7 + line: 221 + name: namespace of unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 11 + line: 221 + start: + character: 4 + line: 221 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out new file mode 100644 index 00000000..8bff5136 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-010-namespace_of_unknown_lib].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 221 + name: namespace of unknown lib +result: !Hover + contents: + kind: markdown + value: '### Library *UnknownLibrary*' + range: + end: + character: 11 + line: 221 + start: + character: 4 + line: 221 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out new file mode 100644 index 00000000..dec8d3ff --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-012-keyword_of_unknown_lib].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 12 + line: 221 + name: keyword of unknown lib +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out new file mode 100644 index 00000000..b7071d36 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-022-keyword_of_unknown_lib].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 22 + line: 221 + name: keyword of unknown lib +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out new file mode 100644 index 00000000..6777657c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-221-032-keyword_of_unknown_lib].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 32 + line: 221 + name: keyword of unknown lib +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out new file mode 100644 index 00000000..7f4170bc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-004-namespace_of_lib_with_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 224 + name: namespace of lib with error +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 12 + line: 224 + start: + character: 4 + line: 224 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out new file mode 100644 index 00000000..13a51c0a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-008-namespace_of_lib_with_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 8 + line: 224 + name: namespace of lib with error +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 12 + line: 224 + start: + character: 4 + line: 224 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out new file mode 100644 index 00000000..b45ab24a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-011-namespace_of_lib_with_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 11 + line: 224 + name: namespace of lib with error +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 12 + line: 224 + start: + character: 4 + line: 224 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out new file mode 100644 index 00000000..f623b0f9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-013-keyword_of_lib_with_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 224 + name: keyword of lib with error +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 30 + line: 224 + start: + character: 13 + line: 224 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out new file mode 100644 index 00000000..0df822c0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-021-keyword_of_lib_with_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 224 + name: keyword of lib with error +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 30 + line: 224 + start: + character: 13 + line: 224 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out new file mode 100644 index 00000000..28f438aa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-224-029-keyword_of_lib_with_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 224 + name: keyword of lib with error +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 30 + line: 224 + start: + character: 13 + line: 224 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out new file mode 100644 index 00000000..17da0625 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-004-namespace_of_lib_with_no_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 227 + name: namespace of lib with no error +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 14 + line: 227 + start: + character: 4 + line: 227 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out new file mode 100644 index 00000000..501db1d1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-009-namespace_of_lib_with_no_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 227 + name: namespace of lib with no error +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 14 + line: 227 + start: + character: 4 + line: 227 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out new file mode 100644 index 00000000..f04481fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-013-namespace_of_lib_with_no_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 227 + name: namespace of lib with no error +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 14 + line: 227 + start: + character: 4 + line: 227 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out new file mode 100644 index 00000000..76a475b9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-015-keyword_of_lib_with_no_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 227 + name: keyword of lib with no error +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 32 + line: 227 + start: + character: 15 + line: 227 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out new file mode 100644 index 00000000..5c6f8153 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-023-keyword_of_lib_with_no_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 227 + name: keyword of lib with no error +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 32 + line: 227 + start: + character: 15 + line: 227 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out new file mode 100644 index 00000000..7fe26fea --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-227-031-keyword_of_lib_with_no_error].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 31 + line: 227 + name: keyword of lib with no error +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 32 + line: 227 + start: + character: 15 + line: 227 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out new file mode 100644 index 00000000..ab75d58c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-004-namespace_of_lib_with_no_error_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 230 + name: namespace of lib with no error with spaces +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 23 + line: 230 + start: + character: 4 + line: 230 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out new file mode 100644 index 00000000..c3d1ef59 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-013-namespace_of_lib_with_no_error_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 230 + name: namespace of lib with no error with spaces +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 23 + line: 230 + start: + character: 4 + line: 230 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out new file mode 100644 index 00000000..0d8840c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-022-namespace_of_lib_with_no_error_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 230 + name: namespace of lib with no error with spaces +result: !Hover + contents: + kind: markdown + value: '### Library *LibraryWithErrors*' + range: + end: + character: 23 + line: 230 + start: + character: 4 + line: 230 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out new file mode 100644 index 00000000..d3b8aa70 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-024-keyword_of_lib_with_no_error_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 24 + line: 230 + name: keyword of lib with no error with spaces +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 41 + line: 230 + start: + character: 24 + line: 230 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out new file mode 100644 index 00000000..edad59db --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-032-keyword_of_lib_with_no_error_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 32 + line: 230 + name: keyword of lib with no error with spaces +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 41 + line: 230 + start: + character: 24 + line: 230 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out new file mode 100644 index 00000000..833b93f1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-230-040-keyword_of_lib_with_no_error_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 40 + line: 230 + name: keyword of lib with no error with spaces +result: !Hover + contents: + kind: markdown + value: '### Keyword *A Library Keyword*' + range: + end: + character: 41 + line: 230 + start: + character: 24 + line: 230 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out new file mode 100644 index 00000000..713edc5e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-041-short_keyword_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 41 + line: 235 + name: short keyword argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${a}`' + range: + end: + character: 42 + line: 235 + start: + character: 41 + line: 235 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out new file mode 100644 index 00000000..5fe0d295 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-048-keyword_argument_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 48 + line: 235 + name: keyword argument with spaces +result: !Hover + contents: + kind: markdown + value: '### Argument `${a long name}`' + range: + end: + character: 59 + line: 235 + start: + character: 48 + line: 235 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out new file mode 100644 index 00000000..696dc840 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-053-keyword_argument_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 53 + line: 235 + name: keyword argument with spaces +result: !Hover + contents: + kind: markdown + value: '### Argument `${a long name}`' + range: + end: + character: 59 + line: 235 + start: + character: 48 + line: 235 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out new file mode 100644 index 00000000..018ef965 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-235-058-keyword_argument_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 58 + line: 235 + name: keyword argument with spaces +result: !Hover + contents: + kind: markdown + value: '### Argument `${a long name}`' + range: + end: + character: 59 + line: 235 + start: + character: 48 + line: 235 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out new file mode 100644 index 00000000..be6446d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-004-run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 242 + name: run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keyword*' + range: + end: + character: 15 + line: 242 + start: + character: 4 + line: 242 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out new file mode 100644 index 00000000..1e121e80 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-009-run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 9 + line: 242 + name: run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keyword*' + range: + end: + character: 15 + line: 242 + start: + character: 4 + line: 242 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out new file mode 100644 index 00000000..8ccd1777 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-014-run_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 242 + name: run keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keyword*' + range: + end: + character: 15 + line: 242 + start: + character: 4 + line: 242 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out new file mode 100644 index 00000000..e349b6bf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-019-run_keyword_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 19 + line: 242 + name: run keyword argument +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 22 + line: 242 + start: + character: 19 + line: 242 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out new file mode 100644 index 00000000..836c6a47 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-020-run_keyword_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 242 + name: run keyword argument +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 22 + line: 242 + start: + character: 19 + line: 242 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out new file mode 100644 index 00000000..7c4b3466 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-242-021-run_keyword_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 242 + name: run keyword argument +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 22 + line: 242 + start: + character: 19 + line: 242 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out new file mode 100644 index 00000000..06a489c6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-004-run_keywords].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 246 + name: run keywords +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keywords*' + range: + end: + character: 16 + line: 246 + start: + character: 4 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out new file mode 100644 index 00000000..4dbf3e55 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-010-run_keywords].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 246 + name: run keywords +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keywords*' + range: + end: + character: 16 + line: 246 + start: + character: 4 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out new file mode 100644 index 00000000..1d2d5916 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-015-run_keywords].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 246 + name: run keywords +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keywords*' + range: + end: + character: 16 + line: 246 + start: + character: 4 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out new file mode 100644 index 00000000..4ea605e9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-020-run_keywords_simple_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 246 + name: run keywords simple keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 36 + line: 246 + start: + character: 20 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out new file mode 100644 index 00000000..ad165c35 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-028-run_keywords_simple_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 28 + line: 246 + name: run keywords simple keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 36 + line: 246 + start: + character: 20 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out new file mode 100644 index 00000000..18d1165a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-035-run_keywords_simple_keyword].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 35 + line: 246 + name: run keywords simple keyword +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 36 + line: 246 + start: + character: 20 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out new file mode 100644 index 00000000..ce0f80fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-040-run_keywords_second_parameter_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 40 + line: 246 + name: run keywords second parameter with spaces +result: !Hover + contents: + kind: markdown + value: '### Keyword *sleep a while*' + range: + end: + character: 60 + line: 246 + start: + character: 40 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out new file mode 100644 index 00000000..1cba6c0e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-050-run_keywords_second_parameter_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 50 + line: 246 + name: run keywords second parameter with spaces +result: !Hover + contents: + kind: markdown + value: '### Keyword *sleep a while*' + range: + end: + character: 60 + line: 246 + start: + character: 40 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out new file mode 100644 index 00000000..a368a0fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-246-059-run_keywords_second_parameter_with_spaces].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 59 + line: 246 + name: run keywords second parameter with spaces +result: !Hover + contents: + kind: markdown + value: '### Keyword *sleep a while*' + range: + end: + character: 60 + line: 246 + start: + character: 40 + line: 246 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out new file mode 100644 index 00000000..5ab2363f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-004-run_keywords].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 251 + name: run keywords +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keywords*' + range: + end: + character: 16 + line: 251 + start: + character: 4 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out new file mode 100644 index 00000000..b91ade5c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-010-run_keywords].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 10 + line: 251 + name: run keywords +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keywords*' + range: + end: + character: 16 + line: 251 + start: + character: 4 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out new file mode 100644 index 00000000..d0257f70 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-015-run_keywords].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 251 + name: run keywords +result: !Hover + contents: + kind: markdown + value: '### Keyword *Run Keywords*' + range: + end: + character: 16 + line: 251 + start: + character: 4 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out new file mode 100644 index 00000000..0b9a61c3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-020-run_keywords_simple_keyword,_parameter_and_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 20 + line: 251 + name: run keywords simple keyword, parameter and AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 23 + line: 251 + start: + character: 20 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out new file mode 100644 index 00000000..3421889d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-021-run_keywords_simple_keyword,_parameter_and_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 251 + name: run keywords simple keyword, parameter and AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 23 + line: 251 + start: + character: 20 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out new file mode 100644 index 00000000..8db741fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-022-run_keywords_simple_keyword,_parameter_and_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 251 + name: run keywords simple keyword, parameter and AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *Log*' + range: + end: + character: 23 + line: 251 + start: + character: 20 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out new file mode 100644 index 00000000..bdbc6d10 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-029-AND].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 29 + line: 251 + name: AND +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out new file mode 100644 index 00000000..a48ca7cd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-030-AND].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 30 + line: 251 + name: AND +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out new file mode 100644 index 00000000..6a02737d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-031-AND].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 31 + line: 251 + name: AND +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out new file mode 100644 index 00000000..cea83597 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-034-run_keywords_simple_keyword_and_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 34 + line: 251 + name: run keywords simple keyword and AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 50 + line: 251 + start: + character: 34 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out new file mode 100644 index 00000000..141a66af --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-042-run_keywords_simple_keyword_and_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 42 + line: 251 + name: run keywords simple keyword and AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 50 + line: 251 + start: + character: 34 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out new file mode 100644 index 00000000..42047687 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-049-run_keywords_simple_keyword_and_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 49 + line: 251 + name: run keywords simple keyword and AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 50 + line: 251 + start: + character: 34 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out new file mode 100644 index 00000000..83833c7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-057-run_keywords_second_parameter_with_spaces_and_no_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 57 + line: 251 + name: run keywords second parameter with spaces and no AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *sleep a while*' + range: + end: + character: 77 + line: 251 + start: + character: 57 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out new file mode 100644 index 00000000..fabfbb22 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-067-run_keywords_second_parameter_with_spaces_and_no_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 67 + line: 251 + name: run keywords second parameter with spaces and no AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *sleep a while*' + range: + end: + character: 77 + line: 251 + start: + character: 57 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out new file mode 100644 index 00000000..f345bc2d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-251-076-run_keywords_second_parameter_with_spaces_and_no_AND].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 76 + line: 251 + name: run keywords second parameter with spaces and no AND +result: !Hover + contents: + kind: markdown + value: '### Keyword *sleep a while*' + range: + end: + character: 77 + line: 251 + start: + character: 57 + line: 251 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out new file mode 100644 index 00000000..f6f33b74 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-001-simple_keyword_with_extra_spaces_and_parameter].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 1 + line: 258 + name: simple keyword with extra spaces and parameter +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 16 + line: 258 + start: + character: 0 + line: 258 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out new file mode 100644 index 00000000..71fb9337 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-008-simple_keyword_with_extra_spaces_and_parameter].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 8 + line: 258 + name: simple keyword with extra spaces and parameter +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 16 + line: 258 + start: + character: 0 + line: 258 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out new file mode 100644 index 00000000..1b01ae86 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-258-015-simple_keyword_with_extra_spaces_and_parameter].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 258 + name: simple keyword with extra spaces and parameter +result: !Hover + contents: + kind: markdown + value: '### Keyword *a simple keyword*' + range: + end: + character: 16 + line: 258 + start: + character: 0 + line: 258 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out new file mode 100644 index 00000000..eeccf5f0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-004-simple_keyword_with_extra_spaces_and_parameter].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 4 + line: 263 + name: simple keyword with extra spaces and parameter +result: !Hover + contents: + kind: markdown + value: '### Keyword *Sleep*' + range: + end: + character: 13 + line: 263 + start: + character: 4 + line: 263 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out new file mode 100644 index 00000000..c5e4493f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-008-simple_keyword_with_extra_spaces_and_parameter].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 8 + line: 263 + name: simple keyword with extra spaces and parameter +result: !Hover + contents: + kind: markdown + value: '### Keyword *Sleep*' + range: + end: + character: 13 + line: 263 + start: + character: 4 + line: 263 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out new file mode 100644 index 00000000..4c43fa9b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-263-012-simple_keyword_with_extra_spaces_and_parameter].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 12 + line: 263 + name: simple keyword with extra spaces and parameter +result: !Hover + contents: + kind: markdown + value: '### Keyword *Sleep*' + range: + end: + character: 13 + line: 263 + start: + character: 4 + line: 263 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out new file mode 100644 index 00000000..8b2676d5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-021-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 267 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 26 + line: 267 + start: + character: 21 + line: 267 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out new file mode 100644 index 00000000..79d3077d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-023-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 23 + line: 267 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 26 + line: 267 + start: + character: 21 + line: 267 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out new file mode 100644 index 00000000..b892784f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-025-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 25 + line: 267 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 26 + line: 267 + start: + character: 21 + line: 267 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out new file mode 100644 index 00000000..e82bf230 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-030-a_default_value].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 30 + line: 267 + name: a default value +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 35 + line: 267 + start: + character: 30 + line: 267 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out new file mode 100644 index 00000000..5c646c6c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-032-a_default_value].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 32 + line: 267 + name: a default value +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 35 + line: 267 + start: + character: 30 + line: 267 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out new file mode 100644 index 00000000..b6be4901 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-267-034-a_default_value].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 34 + line: 267 + name: a default value +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 35 + line: 267 + start: + character: 30 + line: 267 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out new file mode 100644 index 00000000..96eeadba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-013-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 270 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out new file mode 100644 index 00000000..fe4fe963 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-270-014-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 270 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out new file mode 100644 index 00000000..0d8e6a5e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-013-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 272 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 18 + line: 272 + start: + character: 13 + line: 272 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out new file mode 100644 index 00000000..528794ae --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-015-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 272 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 18 + line: 272 + start: + character: 13 + line: 272 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out new file mode 100644 index 00000000..592051b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-272-017-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 17 + line: 272 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 18 + line: 272 + start: + character: 13 + line: 272 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out new file mode 100644 index 00000000..8d0c7471 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-021-an_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 276 + name: an argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${tt}`' + range: + end: + character: 23 + line: 276 + start: + character: 21 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out new file mode 100644 index 00000000..d2c6f5ad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-022-an_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 22 + line: 276 + name: an argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${tt}`' + range: + end: + character: 23 + line: 276 + start: + character: 21 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out new file mode 100644 index 00000000..c2c71f54 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-030-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 30 + line: 276 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 35 + line: 276 + start: + character: 30 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out new file mode 100644 index 00000000..38039ebb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-032-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 32 + line: 276 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 35 + line: 276 + start: + character: 30 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out new file mode 100644 index 00000000..60d9c5af --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-034-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 34 + line: 276 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 35 + line: 276 + start: + character: 30 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out new file mode 100644 index 00000000..fa8ebb7a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-039-a_default_value].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 39 + line: 276 + name: a default value +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 44 + line: 276 + start: + character: 39 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out new file mode 100644 index 00000000..43780d24 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-041-a_default_value].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 41 + line: 276 + name: a default value +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 44 + line: 276 + start: + character: 39 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out new file mode 100644 index 00000000..29006ae2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-276-043-a_default_value].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 43 + line: 276 + name: a default value +result: !Hover + contents: + kind: markdown + value: '### Suite Variable `${A VAR}`' + range: + end: + character: 44 + line: 276 + start: + character: 39 + line: 276 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out new file mode 100644 index 00000000..a59eb306 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-013-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 280 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${tt}`' + range: + end: + character: 15 + line: 280 + start: + character: 13 + line: 280 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out new file mode 100644 index 00000000..0a5df5f5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-280-014-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 14 + line: 280 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${tt}`' + range: + end: + character: 15 + line: 280 + start: + character: 13 + line: 280 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out new file mode 100644 index 00000000..3103c35b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-013-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 282 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 18 + line: 282 + start: + character: 13 + line: 282 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out new file mode 100644 index 00000000..a0904070 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-015-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 15 + line: 282 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 18 + line: 282 + start: + character: 13 + line: 282 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out new file mode 100644 index 00000000..68b5dfa2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-282-017-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 17 + line: 282 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${A VAR}`' + range: + end: + character: 18 + line: 282 + start: + character: 13 + line: 282 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out new file mode 100644 index 00000000..33b9896b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-021-an_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 21 + line: 286 + name: an argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${a}`' + range: + end: + character: 22 + line: 286 + start: + character: 21 + line: 286 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out new file mode 100644 index 00000000..5ad1ab30 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-029-another_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 29 + line: 286 + name: another argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${b}`' + range: + end: + character: 30 + line: 286 + start: + character: 29 + line: 286 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out new file mode 100644 index 00000000..058c0140 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-286-034-argument_usage_in_argument].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 34 + line: 286 + name: argument usage in argument +result: !Hover + contents: + kind: markdown + value: '### Argument `${a}`' + range: + end: + character: 35 + line: 286 + start: + character: 34 + line: 286 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out new file mode 100644 index 00000000..9ae1f7c0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-290-013-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 290 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${a}`' + range: + end: + character: 14 + line: 290 + start: + character: 13 + line: 290 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out new file mode 100644 index 00000000..8821224b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_hover.test[hover.robot-292-013-argument_usage].out @@ -0,0 +1,15 @@ +data: !GeneratedTestData + character: 13 + line: 292 + name: argument usage +result: !Hover + contents: + kind: markdown + value: '### Argument `${b}`' + range: + end: + character: 14 + line: 292 + start: + character: 13 + line: 292 diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out new file mode 100644 index 00000000..e08d5e75 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-016-a_builtin_library].out @@ -0,0 +1,86 @@ +data: !GeneratedTestData + character: 16 + 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: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + uri: tests/goto.robot +- !Location + range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + uri: tests/hover.robot +- !Location + range: + end: + character: 15 + line: 78 + start: + character: 4 + line: 78 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 1 + start: + character: 11 + line: 1 + uri: tests/signature_help.robot +- !Location + range: + end: + character: 22 + line: 2 + start: + character: 11 + line: 2 + uri: tests/symbols.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out new file mode 100644 index 00000000..dbc16260 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-021-a_builtin_library].out @@ -0,0 +1,86 @@ +data: !GeneratedTestData + character: 21 + 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: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + uri: tests/goto.robot +- !Location + range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + uri: tests/hover.robot +- !Location + range: + end: + character: 15 + line: 78 + start: + character: 4 + line: 78 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 1 + start: + character: 11 + line: 1 + uri: tests/signature_help.robot +- !Location + range: + end: + character: 22 + line: 2 + start: + character: 11 + line: 2 + uri: tests/symbols.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out new file mode 100644 index 00000000..b2c80146 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-001-026-a_builtin_library].out @@ -0,0 +1,86 @@ +data: !GeneratedTestData + character: 26 + 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: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + uri: tests/goto.robot +- !Location + range: + end: + character: 15 + line: 59 + start: + character: 4 + line: 59 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 1 + start: + character: 18 + line: 1 + uri: tests/hover.robot +- !Location + range: + end: + character: 15 + line: 78 + start: + character: 4 + line: 78 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 1 + start: + character: 16 + line: 1 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 1 + start: + character: 11 + line: 1 + uri: tests/signature_help.robot +- !Location + range: + end: + character: 22 + line: 2 + start: + character: 11 + line: 2 + uri: tests/symbols.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out new file mode 100644 index 00000000..e8b5cbd5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-018-Variable_in_library_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 18 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out new file mode 100644 index 00000000..932f20c7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-021-Variable_in_library_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 21 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out new file mode 100644 index 00000000..5a0395df --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-023-Variable_in_library_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 23 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out new file mode 100644 index 00000000..21c51eb6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-030-a_custom_library_with_path].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 30 + 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: + character: 47 + line: 5 + start: + character: 16 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 47 + line: 2 + start: + character: 16 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 3 + start: + character: 16 + line: 3 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out new file mode 100644 index 00000000..762d61ad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-037-a_custom_library_with_path].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 37 + 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: + character: 47 + line: 5 + start: + character: 16 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 47 + line: 2 + start: + character: 16 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 3 + start: + character: 16 + line: 3 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out new file mode 100644 index 00000000..a345d261 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-003-043-a_custom_library_with_path].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 43 + 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: + character: 47 + line: 5 + start: + character: 16 + line: 5 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 47 + line: 2 + start: + character: 16 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 49 + line: 4 + start: + character: 18 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 3 + start: + character: 16 + line: 3 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out new file mode 100644 index 00000000..10044fa7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-018-Variable_in_variables_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 18 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out new file mode 100644 index 00000000..8dc7712a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-021-Variable_in_variables_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 21 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out new file mode 100644 index 00000000..19741a0d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-023-Variable_in_variables_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 23 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out new file mode 100644 index 00000000..650748f4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-033-a_variable_import].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 33 + 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: + character: 47 + line: 4 + start: + character: 16 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 13 + line: 9 + uri: tests/duplicated_resources.robot +- !Location + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + uri: tests/goto.robot +- !Location + range: + end: + character: 49 + line: 10 + start: + character: 18 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 6 + start: + character: 16 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 13 + line: 3 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out new file mode 100644 index 00000000..270c9329 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-040-a_variable_import].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 40 + 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: + character: 47 + line: 4 + start: + character: 16 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 13 + line: 9 + uri: tests/duplicated_resources.robot +- !Location + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + uri: tests/goto.robot +- !Location + range: + end: + character: 49 + line: 10 + start: + character: 18 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 6 + start: + character: 16 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 13 + line: 3 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out new file mode 100644 index 00000000..23b7180f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-006-046-a_variable_import].out @@ -0,0 +1,68 @@ +data: !GeneratedTestData + character: 46 + 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: + character: 47 + line: 4 + start: + character: 16 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 13 + line: 9 + uri: tests/duplicated_resources.robot +- !Location + range: + end: + character: 49 + line: 7 + start: + character: 18 + line: 7 + uri: tests/goto.robot +- !Location + range: + end: + character: 49 + line: 10 + start: + character: 18 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 6 + start: + character: 16 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 27 + line: 3 + start: + character: 13 + line: 3 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out new file mode 100644 index 00000000..64ad59e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-018-Variable_in_resource_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 18 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out new file mode 100644 index 00000000..f8583888 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-021-Variable_in_resource_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 21 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out new file mode 100644 index 00000000..d24eb910 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-009-023-Variable_in_resource_import_path].out @@ -0,0 +1,149 @@ +data: !GeneratedTestData + character: 23 + 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: + character: 24 + line: 2 + start: + character: 18 + line: 2 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 4 + start: + character: 18 + line: 4 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 4 + start: + character: 20 + line: 4 + uri: tests/goto.robot +- !Location + range: + end: + character: 21 + line: 20 + start: + character: 15 + line: 20 + uri: tests/goto.robot +- !Location + range: + end: + character: 26 + line: 7 + start: + character: 20 + line: 7 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 10 + start: + character: 20 + line: 10 + uri: tests/hover.robot +- !Location + range: + end: + character: 26 + line: 13 + start: + character: 20 + line: 13 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 89 + start: + character: 13 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 3 + start: + character: 18 + line: 3 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 6 + start: + character: 18 + line: 6 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 9 + start: + character: 18 + line: 9 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 18 + start: + character: 13 + line: 18 + uri: tests/variables.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out new file mode 100644 index 00000000..8d224dc4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-038-Variable_in_library_params].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 38 + line: 13 + name: Variable in library params +result: +- !Location + range: + end: + character: 45 + line: 13 + start: + character: 38 + line: 13 + uri: tests/references.robot +- !Location + range: + end: + character: 9 + line: 24 + start: + character: 2 + line: 24 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 64 + start: + character: 37 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out new file mode 100644 index 00000000..efd87f3c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-041-Variable_in_library_params].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 41 + line: 13 + name: Variable in library params +result: +- !Location + range: + end: + character: 45 + line: 13 + start: + character: 38 + line: 13 + uri: tests/references.robot +- !Location + range: + end: + character: 9 + line: 24 + start: + character: 2 + line: 24 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 64 + start: + character: 37 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out new file mode 100644 index 00000000..1317ffcf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-013-044-Variable_in_library_params].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 44 + line: 13 + name: Variable in library params +result: +- !Location + range: + end: + character: 45 + line: 13 + start: + character: 38 + line: 13 + uri: tests/references.robot +- !Location + range: + end: + character: 9 + line: 24 + start: + character: 2 + line: 24 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 64 + start: + character: 37 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..536f74a2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-023-suite_fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 23 + line: 16 + name: suite fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..824303ea --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-030-suite_fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 30 + line: 16 + name: suite fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..aaa52392 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-016-036-suite_fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 36 + line: 16 + name: suite fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..c3f6a105 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-014-test_fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 14 + line: 18 + name: test fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..fdfa06e6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-021-test_fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 21 + line: 18 + name: test fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..cbda896d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-018-027-test_fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 27 + line: 18 + name: test fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out new file mode 100644 index 00000000..1f658cde --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-002-simple_variable].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 2 + line: 22 + name: simple variable +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out new file mode 100644 index 00000000..7399ca1b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-004-simple_variable].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 4 + line: 22 + name: simple variable +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out new file mode 100644 index 00000000..e0c422ba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-022-006-simple_variable].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 6 + line: 22 + name: simple variable +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out new file mode 100644 index 00000000..9220b337 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-002-another_simple_var].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 2 + line: 24 + name: another simple var +result: +- !Location + range: + end: + character: 45 + line: 13 + start: + character: 38 + line: 13 + uri: tests/references.robot +- !Location + range: + end: + character: 9 + line: 24 + start: + character: 2 + line: 24 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 64 + start: + character: 37 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out new file mode 100644 index 00000000..ca87519b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-005-another_simple_var].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 5 + line: 24 + name: another simple var +result: +- !Location + range: + end: + character: 45 + line: 13 + start: + character: 38 + line: 13 + uri: tests/references.robot +- !Location + range: + end: + character: 9 + line: 24 + start: + character: 2 + line: 24 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 64 + start: + character: 37 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out new file mode 100644 index 00000000..081898ba --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-024-008-another_simple_var].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 8 + line: 24 + name: another simple var +result: +- !Location + range: + end: + character: 45 + line: 13 + start: + character: 38 + line: 13 + uri: tests/references.robot +- !Location + range: + end: + character: 9 + line: 24 + start: + character: 2 + line: 24 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 64 + start: + character: 37 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out new file mode 100644 index 00000000..b7e7db3e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-002-a_var_with_emoji].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 2 + line: 27 + name: a var with emoji +result: +- !Location + range: + end: + character: 4 + line: 27 + start: + character: 2 + line: 27 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 88 + start: + character: 13 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 105 + start: + character: 26 + line: 105 + uri: tests/references.robot +- !Location + range: + end: + character: 47 + line: 105 + start: + character: 45 + line: 105 + uri: tests/references.robot +- !Location + range: + end: + character: 53 + line: 105 + start: + character: 51 + line: 105 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out new file mode 100644 index 00000000..b7c8dad0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-004-a_var_with_emoji].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 4 + line: 27 + name: a var with emoji +result: +- !Location + range: + end: + character: 4 + line: 27 + start: + character: 2 + line: 27 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 88 + start: + character: 13 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 105 + start: + character: 26 + line: 105 + uri: tests/references.robot +- !Location + range: + end: + character: 47 + line: 105 + start: + character: 45 + line: 105 + uri: tests/references.robot +- !Location + range: + end: + character: 53 + line: 105 + start: + character: 51 + line: 105 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out new file mode 100644 index 00000000..a5bbf2d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-027-006-a_var_with_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 6 + line: 27 + name: a var with emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out new file mode 100644 index 00000000..02b17c6d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-015-fixture_keyword_call].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 15 + line: 32 + name: fixture keyword call +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out new file mode 100644 index 00000000..c44da20a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-022-fixture_keyword_call].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 22 + line: 32 + name: fixture keyword call +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out new file mode 100644 index 00000000..b51053b5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-032-028-fixture_keyword_call].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 28 + line: 32 + name: fixture keyword call +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..4cbcee9f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-026-fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 26 + line: 34 + name: fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..7605475c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-033-fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 33 + line: 34 + name: fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out new file mode 100644 index 00000000..01115b5e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-034-039-fixture_keyword_call_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 39 + line: 34 + name: fixture keyword call with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out new file mode 100644 index 00000000..bd18663d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-004-simple_keyword_call].out @@ -0,0 +1,2462 @@ +data: !GeneratedTestData + character: 4 + line: 36 + name: simple keyword call +result: +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: discovery/__not_discovered.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: discovery/__not_discovered.robot +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: discovery/_not_discovered.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: discovery/_not_discovered.robot +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: extras/fibonaci.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: extras/fibonaci.robot +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: folder_a/duplicated.resource +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: folder_a/duplicated.resource +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: folder_b/duplicated.resource +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: folder_b/duplicated.resource +- !Location + range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 7 + line: 8 + start: + character: 4 + line: 8 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 11 + start: + character: 4 + line: 11 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 15 + start: + character: 4 + line: 15 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 17 + start: + character: 4 + line: 17 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 7 + start: + character: 4 + line: 7 + uri: rf61/embedded_keywords.robot +- !Location + range: + end: + character: 7 + line: 11 + start: + character: 4 + line: 11 + uri: rf61/embedded_keywords.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: rf61/jsonvariables.robot +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: rf61/jsonvariables.robot +- !Location + range: + end: + character: 7 + line: 40 + start: + character: 4 + line: 40 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 55 + start: + character: 4 + line: 55 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 4 + start: + character: 4 + line: 4 + uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 6 + start: + 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: 98 + start: + character: 4 + line: 98 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 103 + start: + character: 5 + 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: 107 + start: + character: 4 + line: 107 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 110 + start: + character: 4 + line: 110 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 113 + start: + character: 4 + line: 113 + 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: 120 + start: + character: 4 + line: 120 + 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: 125 + start: + character: 4 + line: 125 + 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: 130 + start: + character: 4 + line: 130 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 131 + start: + character: 4 + line: 131 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 88 + start: + character: 8 + line: 88 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 91 + start: + character: 8 + line: 91 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 96 + start: + character: 8 + line: 96 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 99 + start: + character: 8 + line: 99 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 19 + line: 102 + start: + character: 16 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 51 + line: 102 + start: + character: 48 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 70 + line: 102 + start: + character: 67 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 17 + line: 106 + start: + character: 14 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 47 + line: 106 + start: + character: 44 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 66 + line: 106 + start: + character: 63 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 118 + start: + character: 4 + line: 118 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 136 + start: + character: 4 + line: 136 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 138 + start: + character: 4 + line: 138 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 140 + start: + character: 4 + line: 140 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 166 + start: + character: 4 + line: 166 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 179 + start: + character: 4 + line: 179 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 10 + start: + character: 4 + line: 10 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 16 + start: + character: 12 + line: 16 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 19 + start: + character: 12 + line: 19 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 22 + start: + character: 12 + line: 22 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 26 + start: + character: 8 + line: 26 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 56 + start: + character: 8 + line: 56 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 62 + start: + character: 8 + line: 62 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 65 + start: + character: 8 + line: 65 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 67 + start: + character: 12 + line: 67 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 69 + start: + character: 12 + line: 69 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 73 + start: + character: 8 + line: 73 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 76 + start: + character: 8 + line: 76 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 47 + start: + character: 4 + line: 47 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 49 + start: + character: 4 + line: 49 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 52 + start: + character: 4 + line: 52 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 57 + start: + character: 4 + line: 57 + uri: tests/goto.robot +- !Location + range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 71 + start: + character: 8 + line: 71 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/goto.robot +- !Location + range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 115 + start: + character: 8 + line: 115 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 118 + start: + character: 8 + line: 118 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 123 + start: + character: 8 + line: 123 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 126 + start: + character: 8 + line: 126 + uri: tests/goto.robot +- !Location + range: + end: + character: 19 + line: 129 + start: + character: 16 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 51 + line: 129 + start: + character: 48 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 70 + line: 129 + start: + character: 67 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 17 + line: 133 + start: + character: 14 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 47 + line: 133 + start: + character: 44 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 66 + line: 133 + start: + character: 63 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 158 + start: + character: 4 + line: 158 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 160 + start: + character: 4 + line: 160 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 168 + start: + character: 4 + line: 168 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 170 + start: + character: 4 + line: 170 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 180 + start: + character: 4 + line: 180 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 182 + start: + character: 4 + line: 182 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 191 + start: + character: 4 + line: 191 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 193 + start: + character: 4 + line: 193 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 214 + start: + character: 4 + line: 214 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 215 + start: + character: 4 + line: 215 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 227 + start: + character: 4 + line: 227 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 228 + start: + character: 4 + line: 228 + uri: tests/goto.robot +- !Location + range: + end: + character: 16 + line: 64 + start: + character: 13 + line: 64 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 66 + start: + character: 24 + line: 66 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 70 + start: + character: 4 + line: 70 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 71 + start: + character: 4 + line: 71 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 83 + start: + character: 8 + line: 83 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 89 + start: + character: 4 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 92 + start: + character: 4 + line: 92 + uri: tests/hover.robot +- !Location + range: + end: + character: 29 + line: 104 + start: + character: 26 + line: 104 + uri: tests/hover.robot +- !Location + range: + end: + character: 14 + line: 121 + start: + character: 11 + line: 121 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 128 + start: + character: 8 + line: 128 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 131 + start: + character: 8 + line: 131 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 136 + start: + character: 8 + line: 136 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 139 + start: + character: 8 + line: 139 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 142 + start: + character: 16 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 51 + line: 142 + start: + character: 48 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 70 + line: 142 + start: + character: 67 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 17 + line: 146 + start: + character: 14 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 146 + start: + character: 44 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 66 + line: 146 + start: + character: 63 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 151 + start: + character: 21 + line: 151 + uri: tests/hover.robot +- !Location + range: + end: + character: 34 + line: 154 + start: + character: 31 + line: 154 + uri: tests/hover.robot +- !Location + range: + end: + character: 13 + line: 158 + start: + character: 10 + line: 158 + uri: tests/hover.robot +- !Location + range: + end: + character: 12 + line: 161 + start: + character: 9 + line: 161 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 164 + start: + character: 8 + line: 164 + uri: tests/hover.robot +- !Location + range: + end: + character: 12 + line: 167 + start: + character: 9 + line: 167 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 + uri: tests/hover.robot +- !Location + range: + end: + character: 21 + line: 173 + start: + character: 18 + line: 173 + uri: tests/hover.robot +- !Location + range: + end: + character: 40 + line: 178 + start: + character: 37 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 65 + line: 178 + start: + character: 62 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 82 + line: 178 + start: + character: 79 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 62 + line: 183 + start: + character: 59 + line: 183 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 188 + start: + character: 24 + line: 188 + uri: tests/hover.robot +- !Location + range: + end: + character: 22 + line: 242 + start: + character: 19 + line: 242 + uri: tests/hover.robot +- !Location + range: + end: + character: 23 + line: 251 + start: + character: 20 + line: 251 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 270 + start: + character: 4 + line: 270 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 272 + start: + character: 4 + line: 272 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 280 + start: + character: 4 + line: 280 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 282 + start: + character: 4 + line: 282 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 290 + start: + character: 4 + line: 290 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 292 + start: + character: 4 + line: 292 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 299 + start: + character: 8 + line: 299 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 7 + start: + character: 4 + line: 7 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 9 + start: + character: 4 + line: 9 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 10 + start: + character: 4 + line: 10 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 12 + start: + character: 4 + line: 12 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 13 + start: + character: 4 + line: 13 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 14 + start: + character: 4 + line: 14 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 16 + start: + character: 4 + line: 16 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 23 + start: + character: 4 + line: 23 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 24 + start: + character: 4 + line: 24 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 36 + start: + character: 4 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 115 + start: + character: 4 + line: 115 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 123 + start: + character: 4 + line: 123 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 134 + start: + character: 4 + line: 134 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 135 + start: + character: 4 + line: 135 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 139 + start: + character: 4 + line: 139 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 143 + start: + character: 4 + line: 143 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 147 + start: + character: 4 + line: 147 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 153 + start: + character: 4 + line: 153 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 155 + start: + character: 4 + line: 155 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 163 + start: + character: 4 + line: 163 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 173 + start: + character: 4 + line: 173 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 175 + start: + character: 4 + line: 175 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 188 + start: + character: 4 + line: 188 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 189 + start: + character: 4 + line: 189 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 202 + start: + character: 4 + line: 202 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 203 + start: + character: 4 + line: 203 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 206 + start: + character: 18 + line: 206 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 12 + start: + character: 4 + line: 12 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 16 + start: + character: 4 + line: 16 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 21 + start: + character: 4 + line: 21 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 11 + line: 23 + start: + character: 8 + line: 23 + uri: tests/symbols.robot +- !Location + range: + end: + character: 11 + line: 30 + start: + character: 8 + line: 30 + uri: tests/symbols.robot +- !Location + range: + end: + character: 7 + line: 28 + start: + character: 4 + line: 28 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 62 + start: + character: 4 + line: 62 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 63 + start: + character: 4 + line: 63 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 64 + start: + character: 4 + line: 64 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 65 + start: + character: 4 + line: 65 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 70 + start: + character: 4 + line: 70 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 71 + start: + character: 4 + line: 71 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/templates.robot +- !Location + range: + end: + character: 37 + line: 76 + start: + character: 34 + line: 76 + uri: tests/templates.robot +- !Location + range: + end: + character: 72 + line: 76 + start: + character: 69 + line: 76 + uri: tests/templates.robot +- !Location + range: + end: + character: 11 + line: 82 + start: + character: 8 + line: 82 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 90 + start: + character: 4 + line: 90 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 50 + start: + character: 4 + line: 50 + uri: tests/templates2.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: tests/templates2.robot +- !Location + range: + end: + character: 39 + line: 1 + start: + character: 36 + line: 1 + uri: tests/variables.robot +- !Location + range: + end: + character: 72 + line: 1 + start: + character: 69 + line: 1 + uri: tests/variables.robot +- !Location + range: + end: + character: 17 + line: 2 + start: + character: 14 + line: 2 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 18 + start: + character: 4 + line: 18 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 19 + start: + character: 4 + line: 19 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 20 + start: + character: 4 + line: 20 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 21 + start: + character: 4 + line: 21 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 4 + line: 22 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 23 + start: + character: 4 + line: 23 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 24 + start: + character: 4 + line: 24 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 25 + start: + character: 4 + line: 25 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 26 + start: + character: 4 + line: 26 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 27 + start: + character: 4 + line: 27 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 28 + start: + character: 4 + line: 28 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 29 + start: + character: 4 + line: 29 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 30 + start: + character: 4 + line: 30 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 33 + start: + character: 4 + line: 33 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 35 + start: + character: 4 + line: 35 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 36 + start: + character: 4 + line: 36 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 38 + start: + character: 4 + line: 38 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 39 + start: + character: 4 + line: 39 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 40 + start: + character: 4 + line: 40 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 42 + start: + character: 4 + line: 42 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 44 + start: + character: 4 + line: 44 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 45 + start: + character: 4 + line: 45 + uri: tests/variables.robot +- !Location + range: + end: + character: 21 + line: 49 + start: + character: 18 + line: 49 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 53 + start: + character: 8 + line: 53 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 60 + start: + character: 4 + line: 60 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 61 + start: + character: 4 + line: 61 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 62 + start: + character: 4 + line: 62 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 63 + start: + character: 4 + line: 63 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 66 + start: + character: 4 + line: 66 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 67 + start: + character: 4 + line: 67 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 87 + start: + character: 8 + line: 87 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 89 + start: + character: 8 + line: 89 + uri: tests/variables.robot +- !Location + range: + end: + character: 23 + line: 96 + start: + character: 20 + line: 96 + uri: tests/variables.robot +- !Location + range: + end: + character: 43 + line: 109 + start: + character: 40 + line: 109 + uri: tests/variables.robot +- !Location + range: + end: + character: 34 + line: 111 + start: + character: 31 + line: 111 + uri: tests/variables.robot +- !Location + range: + end: + character: 36 + line: 112 + start: + character: 33 + line: 112 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 130 + start: + character: 4 + line: 130 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 131 + start: + character: 4 + line: 131 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 155 + start: + character: 4 + line: 155 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 163 + start: + character: 4 + line: 163 + uri: tests/variables.robot +- !Location + range: + end: + character: 37 + line: 164 + start: + character: 34 + line: 164 + uri: tests/variables.robot +- !Location + range: + end: + character: 72 + line: 164 + start: + character: 69 + line: 164 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 174 + start: + character: 4 + line: 174 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 9 + start: + character: 8 + line: 9 + uri: tests1/first.robot +- !Location + range: + end: + character: 11 + line: 12 + start: + character: 8 + line: 12 + uri: tests1/first.robot +- !Location + range: + end: + character: 7 + line: 33 + start: + character: 4 + line: 33 + uri: tests1/first.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out new file mode 100644 index 00000000..7f7d646d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-005-simple_keyword_call].out @@ -0,0 +1,2462 @@ +data: !GeneratedTestData + character: 5 + line: 36 + name: simple keyword call +result: +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: discovery/__not_discovered.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: discovery/__not_discovered.robot +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: discovery/_not_discovered.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: discovery/_not_discovered.robot +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: extras/fibonaci.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: extras/fibonaci.robot +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: folder_a/duplicated.resource +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: folder_a/duplicated.resource +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: folder_b/duplicated.resource +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: folder_b/duplicated.resource +- !Location + range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 7 + line: 8 + start: + character: 4 + line: 8 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 11 + start: + character: 4 + line: 11 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 15 + start: + character: 4 + line: 15 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 17 + start: + character: 4 + line: 17 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 7 + start: + character: 4 + line: 7 + uri: rf61/embedded_keywords.robot +- !Location + range: + end: + character: 7 + line: 11 + start: + character: 4 + line: 11 + uri: rf61/embedded_keywords.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: rf61/jsonvariables.robot +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: rf61/jsonvariables.robot +- !Location + range: + end: + character: 7 + line: 40 + start: + character: 4 + line: 40 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 55 + start: + character: 4 + line: 55 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 4 + start: + character: 4 + line: 4 + uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 6 + start: + 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: 98 + start: + character: 4 + line: 98 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 103 + start: + character: 5 + 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: 107 + start: + character: 4 + line: 107 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 110 + start: + character: 4 + line: 110 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 113 + start: + character: 4 + line: 113 + 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: 120 + start: + character: 4 + line: 120 + 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: 125 + start: + character: 4 + line: 125 + 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: 130 + start: + character: 4 + line: 130 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 131 + start: + character: 4 + line: 131 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 88 + start: + character: 8 + line: 88 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 91 + start: + character: 8 + line: 91 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 96 + start: + character: 8 + line: 96 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 99 + start: + character: 8 + line: 99 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 19 + line: 102 + start: + character: 16 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 51 + line: 102 + start: + character: 48 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 70 + line: 102 + start: + character: 67 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 17 + line: 106 + start: + character: 14 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 47 + line: 106 + start: + character: 44 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 66 + line: 106 + start: + character: 63 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 118 + start: + character: 4 + line: 118 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 136 + start: + character: 4 + line: 136 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 138 + start: + character: 4 + line: 138 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 140 + start: + character: 4 + line: 140 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 166 + start: + character: 4 + line: 166 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 179 + start: + character: 4 + line: 179 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 10 + start: + character: 4 + line: 10 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 16 + start: + character: 12 + line: 16 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 19 + start: + character: 12 + line: 19 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 22 + start: + character: 12 + line: 22 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 26 + start: + character: 8 + line: 26 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 56 + start: + character: 8 + line: 56 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 62 + start: + character: 8 + line: 62 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 65 + start: + character: 8 + line: 65 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 67 + start: + character: 12 + line: 67 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 69 + start: + character: 12 + line: 69 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 73 + start: + character: 8 + line: 73 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 76 + start: + character: 8 + line: 76 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 47 + start: + character: 4 + line: 47 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 49 + start: + character: 4 + line: 49 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 52 + start: + character: 4 + line: 52 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 57 + start: + character: 4 + line: 57 + uri: tests/goto.robot +- !Location + range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 71 + start: + character: 8 + line: 71 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/goto.robot +- !Location + range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 115 + start: + character: 8 + line: 115 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 118 + start: + character: 8 + line: 118 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 123 + start: + character: 8 + line: 123 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 126 + start: + character: 8 + line: 126 + uri: tests/goto.robot +- !Location + range: + end: + character: 19 + line: 129 + start: + character: 16 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 51 + line: 129 + start: + character: 48 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 70 + line: 129 + start: + character: 67 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 17 + line: 133 + start: + character: 14 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 47 + line: 133 + start: + character: 44 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 66 + line: 133 + start: + character: 63 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 158 + start: + character: 4 + line: 158 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 160 + start: + character: 4 + line: 160 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 168 + start: + character: 4 + line: 168 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 170 + start: + character: 4 + line: 170 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 180 + start: + character: 4 + line: 180 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 182 + start: + character: 4 + line: 182 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 191 + start: + character: 4 + line: 191 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 193 + start: + character: 4 + line: 193 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 214 + start: + character: 4 + line: 214 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 215 + start: + character: 4 + line: 215 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 227 + start: + character: 4 + line: 227 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 228 + start: + character: 4 + line: 228 + uri: tests/goto.robot +- !Location + range: + end: + character: 16 + line: 64 + start: + character: 13 + line: 64 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 66 + start: + character: 24 + line: 66 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 70 + start: + character: 4 + line: 70 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 71 + start: + character: 4 + line: 71 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 83 + start: + character: 8 + line: 83 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 89 + start: + character: 4 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 92 + start: + character: 4 + line: 92 + uri: tests/hover.robot +- !Location + range: + end: + character: 29 + line: 104 + start: + character: 26 + line: 104 + uri: tests/hover.robot +- !Location + range: + end: + character: 14 + line: 121 + start: + character: 11 + line: 121 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 128 + start: + character: 8 + line: 128 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 131 + start: + character: 8 + line: 131 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 136 + start: + character: 8 + line: 136 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 139 + start: + character: 8 + line: 139 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 142 + start: + character: 16 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 51 + line: 142 + start: + character: 48 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 70 + line: 142 + start: + character: 67 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 17 + line: 146 + start: + character: 14 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 146 + start: + character: 44 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 66 + line: 146 + start: + character: 63 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 151 + start: + character: 21 + line: 151 + uri: tests/hover.robot +- !Location + range: + end: + character: 34 + line: 154 + start: + character: 31 + line: 154 + uri: tests/hover.robot +- !Location + range: + end: + character: 13 + line: 158 + start: + character: 10 + line: 158 + uri: tests/hover.robot +- !Location + range: + end: + character: 12 + line: 161 + start: + character: 9 + line: 161 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 164 + start: + character: 8 + line: 164 + uri: tests/hover.robot +- !Location + range: + end: + character: 12 + line: 167 + start: + character: 9 + line: 167 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 + uri: tests/hover.robot +- !Location + range: + end: + character: 21 + line: 173 + start: + character: 18 + line: 173 + uri: tests/hover.robot +- !Location + range: + end: + character: 40 + line: 178 + start: + character: 37 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 65 + line: 178 + start: + character: 62 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 82 + line: 178 + start: + character: 79 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 62 + line: 183 + start: + character: 59 + line: 183 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 188 + start: + character: 24 + line: 188 + uri: tests/hover.robot +- !Location + range: + end: + character: 22 + line: 242 + start: + character: 19 + line: 242 + uri: tests/hover.robot +- !Location + range: + end: + character: 23 + line: 251 + start: + character: 20 + line: 251 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 270 + start: + character: 4 + line: 270 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 272 + start: + character: 4 + line: 272 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 280 + start: + character: 4 + line: 280 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 282 + start: + character: 4 + line: 282 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 290 + start: + character: 4 + line: 290 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 292 + start: + character: 4 + line: 292 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 299 + start: + character: 8 + line: 299 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 7 + start: + character: 4 + line: 7 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 9 + start: + character: 4 + line: 9 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 10 + start: + character: 4 + line: 10 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 12 + start: + character: 4 + line: 12 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 13 + start: + character: 4 + line: 13 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 14 + start: + character: 4 + line: 14 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 16 + start: + character: 4 + line: 16 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 23 + start: + character: 4 + line: 23 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 24 + start: + character: 4 + line: 24 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 36 + start: + character: 4 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 115 + start: + character: 4 + line: 115 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 123 + start: + character: 4 + line: 123 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 134 + start: + character: 4 + line: 134 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 135 + start: + character: 4 + line: 135 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 139 + start: + character: 4 + line: 139 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 143 + start: + character: 4 + line: 143 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 147 + start: + character: 4 + line: 147 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 153 + start: + character: 4 + line: 153 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 155 + start: + character: 4 + line: 155 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 163 + start: + character: 4 + line: 163 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 173 + start: + character: 4 + line: 173 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 175 + start: + character: 4 + line: 175 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 188 + start: + character: 4 + line: 188 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 189 + start: + character: 4 + line: 189 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 202 + start: + character: 4 + line: 202 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 203 + start: + character: 4 + line: 203 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 206 + start: + character: 18 + line: 206 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 12 + start: + character: 4 + line: 12 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 16 + start: + character: 4 + line: 16 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 21 + start: + character: 4 + line: 21 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 11 + line: 23 + start: + character: 8 + line: 23 + uri: tests/symbols.robot +- !Location + range: + end: + character: 11 + line: 30 + start: + character: 8 + line: 30 + uri: tests/symbols.robot +- !Location + range: + end: + character: 7 + line: 28 + start: + character: 4 + line: 28 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 62 + start: + character: 4 + line: 62 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 63 + start: + character: 4 + line: 63 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 64 + start: + character: 4 + line: 64 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 65 + start: + character: 4 + line: 65 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 70 + start: + character: 4 + line: 70 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 71 + start: + character: 4 + line: 71 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/templates.robot +- !Location + range: + end: + character: 37 + line: 76 + start: + character: 34 + line: 76 + uri: tests/templates.robot +- !Location + range: + end: + character: 72 + line: 76 + start: + character: 69 + line: 76 + uri: tests/templates.robot +- !Location + range: + end: + character: 11 + line: 82 + start: + character: 8 + line: 82 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 90 + start: + character: 4 + line: 90 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 50 + start: + character: 4 + line: 50 + uri: tests/templates2.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: tests/templates2.robot +- !Location + range: + end: + character: 39 + line: 1 + start: + character: 36 + line: 1 + uri: tests/variables.robot +- !Location + range: + end: + character: 72 + line: 1 + start: + character: 69 + line: 1 + uri: tests/variables.robot +- !Location + range: + end: + character: 17 + line: 2 + start: + character: 14 + line: 2 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 18 + start: + character: 4 + line: 18 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 19 + start: + character: 4 + line: 19 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 20 + start: + character: 4 + line: 20 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 21 + start: + character: 4 + line: 21 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 4 + line: 22 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 23 + start: + character: 4 + line: 23 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 24 + start: + character: 4 + line: 24 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 25 + start: + character: 4 + line: 25 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 26 + start: + character: 4 + line: 26 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 27 + start: + character: 4 + line: 27 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 28 + start: + character: 4 + line: 28 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 29 + start: + character: 4 + line: 29 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 30 + start: + character: 4 + line: 30 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 33 + start: + character: 4 + line: 33 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 35 + start: + character: 4 + line: 35 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 36 + start: + character: 4 + line: 36 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 38 + start: + character: 4 + line: 38 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 39 + start: + character: 4 + line: 39 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 40 + start: + character: 4 + line: 40 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 42 + start: + character: 4 + line: 42 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 44 + start: + character: 4 + line: 44 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 45 + start: + character: 4 + line: 45 + uri: tests/variables.robot +- !Location + range: + end: + character: 21 + line: 49 + start: + character: 18 + line: 49 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 53 + start: + character: 8 + line: 53 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 60 + start: + character: 4 + line: 60 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 61 + start: + character: 4 + line: 61 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 62 + start: + character: 4 + line: 62 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 63 + start: + character: 4 + line: 63 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 66 + start: + character: 4 + line: 66 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 67 + start: + character: 4 + line: 67 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 87 + start: + character: 8 + line: 87 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 89 + start: + character: 8 + line: 89 + uri: tests/variables.robot +- !Location + range: + end: + character: 23 + line: 96 + start: + character: 20 + line: 96 + uri: tests/variables.robot +- !Location + range: + end: + character: 43 + line: 109 + start: + character: 40 + line: 109 + uri: tests/variables.robot +- !Location + range: + end: + character: 34 + line: 111 + start: + character: 31 + line: 111 + uri: tests/variables.robot +- !Location + range: + end: + character: 36 + line: 112 + start: + character: 33 + line: 112 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 130 + start: + character: 4 + line: 130 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 131 + start: + character: 4 + line: 131 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 155 + start: + character: 4 + line: 155 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 163 + start: + character: 4 + line: 163 + uri: tests/variables.robot +- !Location + range: + end: + character: 37 + line: 164 + start: + character: 34 + line: 164 + uri: tests/variables.robot +- !Location + range: + end: + character: 72 + line: 164 + start: + character: 69 + line: 164 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 174 + start: + character: 4 + line: 174 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 9 + start: + character: 8 + line: 9 + uri: tests1/first.robot +- !Location + range: + end: + character: 11 + line: 12 + start: + character: 8 + line: 12 + uri: tests1/first.robot +- !Location + range: + end: + character: 7 + line: 33 + start: + character: 4 + line: 33 + uri: tests1/first.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out new file mode 100644 index 00000000..c4c541a9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-036-006-simple_keyword_call].out @@ -0,0 +1,2462 @@ +data: !GeneratedTestData + character: 6 + line: 36 + name: simple keyword call +result: +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: discovery/__not_discovered.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: discovery/__not_discovered.robot +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: discovery/_not_discovered.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: discovery/_not_discovered.robot +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: extras/fibonaci.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: extras/fibonaci.robot +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: folder_a/duplicated.resource +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: folder_a/duplicated.resource +- !Location + range: + end: + character: 7 + line: 3 + start: + character: 4 + line: 3 + uri: folder_b/duplicated.resource +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: folder_b/duplicated.resource +- !Location + range: + end: + character: 0 + line: 3298 + start: + character: 0 + line: 3297 + uri: libraries/BuiltIn.py +- !Location + range: + end: + character: 7 + line: 8 + start: + character: 4 + line: 8 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 11 + start: + character: 4 + line: 11 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 15 + start: + character: 4 + line: 15 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 17 + start: + character: 4 + line: 17 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 7 + line: 7 + start: + character: 4 + line: 7 + uri: rf61/embedded_keywords.robot +- !Location + range: + end: + character: 7 + line: 11 + start: + character: 4 + line: 11 + uri: rf61/embedded_keywords.robot +- !Location + range: + end: + character: 7 + line: 5 + start: + character: 4 + line: 5 + uri: rf61/jsonvariables.robot +- !Location + range: + end: + character: 7 + line: 6 + start: + character: 4 + line: 6 + uri: rf61/jsonvariables.robot +- !Location + range: + end: + character: 7 + line: 40 + start: + character: 4 + line: 40 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 55 + start: + character: 4 + line: 55 + uri: rf70/vartest.robot +- !Location + range: + end: + character: 7 + line: 2 + start: + character: 4 + line: 2 + uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 4 + start: + character: 4 + line: 4 + uri: tests/bddstyle.robot +- !Location + range: + end: + character: 7 + line: 6 + start: + 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: 98 + start: + character: 4 + line: 98 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 8 + line: 103 + start: + character: 5 + 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: 107 + start: + character: 4 + line: 107 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 110 + start: + character: 4 + line: 110 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 113 + start: + character: 4 + line: 113 + 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: 120 + start: + character: 4 + line: 120 + 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: 125 + start: + character: 4 + line: 125 + 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: 130 + start: + character: 4 + line: 130 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 131 + start: + character: 4 + line: 131 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 88 + start: + character: 8 + line: 88 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 91 + start: + character: 8 + line: 91 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 96 + start: + character: 8 + line: 96 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 11 + line: 99 + start: + character: 8 + line: 99 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 19 + line: 102 + start: + character: 16 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 51 + line: 102 + start: + character: 48 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 70 + line: 102 + start: + character: 67 + line: 102 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 17 + line: 106 + start: + character: 14 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 47 + line: 106 + start: + character: 44 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 66 + line: 106 + start: + character: 63 + line: 106 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 116 + start: + character: 4 + line: 116 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 118 + start: + character: 4 + line: 118 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 126 + start: + character: 4 + line: 126 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 136 + start: + character: 4 + line: 136 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 138 + start: + character: 4 + line: 138 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 140 + start: + character: 4 + line: 140 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 166 + start: + character: 4 + line: 166 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 179 + start: + character: 4 + line: 179 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 7 + line: 10 + start: + character: 4 + line: 10 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 16 + start: + character: 12 + line: 16 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 19 + start: + character: 12 + line: 19 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 22 + start: + character: 12 + line: 22 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 26 + start: + character: 8 + line: 26 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 56 + start: + character: 8 + line: 56 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 62 + start: + character: 8 + line: 62 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 65 + start: + character: 8 + line: 65 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 67 + start: + character: 12 + line: 67 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 15 + line: 69 + start: + character: 12 + line: 69 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 73 + start: + character: 8 + line: 73 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 11 + line: 76 + start: + character: 8 + line: 76 + uri: tests/foldingrange.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 47 + start: + character: 4 + line: 47 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 49 + start: + character: 4 + line: 49 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 52 + start: + character: 4 + line: 52 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 57 + start: + character: 4 + line: 57 + uri: tests/goto.robot +- !Location + range: + end: + character: 15 + line: 64 + start: + character: 12 + line: 64 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 71 + start: + character: 8 + line: 71 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/goto.robot +- !Location + range: + end: + character: 18 + line: 92 + start: + character: 15 + line: 92 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 94 + start: + character: 26 + line: 94 + uri: tests/goto.robot +- !Location + range: + end: + character: 29 + line: 99 + start: + character: 26 + line: 99 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 115 + start: + character: 8 + line: 115 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 118 + start: + character: 8 + line: 118 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 123 + start: + character: 8 + line: 123 + uri: tests/goto.robot +- !Location + range: + end: + character: 11 + line: 126 + start: + character: 8 + line: 126 + uri: tests/goto.robot +- !Location + range: + end: + character: 19 + line: 129 + start: + character: 16 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 51 + line: 129 + start: + character: 48 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 70 + line: 129 + start: + character: 67 + line: 129 + uri: tests/goto.robot +- !Location + range: + end: + character: 17 + line: 133 + start: + character: 14 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 47 + line: 133 + start: + character: 44 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 66 + line: 133 + start: + character: 63 + line: 133 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 151 + start: + character: 4 + line: 151 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 158 + start: + character: 4 + line: 158 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 160 + start: + character: 4 + line: 160 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 168 + start: + character: 4 + line: 168 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 170 + start: + character: 4 + line: 170 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 180 + start: + character: 4 + line: 180 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 182 + start: + character: 4 + line: 182 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 191 + start: + character: 4 + line: 191 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 193 + start: + character: 4 + line: 193 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 214 + start: + character: 4 + line: 214 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 215 + start: + character: 4 + line: 215 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 227 + start: + character: 4 + line: 227 + uri: tests/goto.robot +- !Location + range: + end: + character: 7 + line: 228 + start: + character: 4 + line: 228 + uri: tests/goto.robot +- !Location + range: + end: + character: 16 + line: 64 + start: + character: 13 + line: 64 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 66 + start: + character: 24 + line: 66 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 70 + start: + character: 4 + line: 70 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 71 + start: + character: 4 + line: 71 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 83 + start: + character: 8 + line: 83 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 89 + start: + character: 4 + line: 89 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 92 + start: + character: 4 + line: 92 + uri: tests/hover.robot +- !Location + range: + end: + character: 29 + line: 104 + start: + character: 26 + line: 104 + uri: tests/hover.robot +- !Location + range: + end: + character: 14 + line: 121 + start: + character: 11 + line: 121 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 128 + start: + character: 8 + line: 128 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 131 + start: + character: 8 + line: 131 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 136 + start: + character: 8 + line: 136 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 139 + start: + character: 8 + line: 139 + uri: tests/hover.robot +- !Location + range: + end: + character: 19 + line: 142 + start: + character: 16 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 51 + line: 142 + start: + character: 48 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 70 + line: 142 + start: + character: 67 + line: 142 + uri: tests/hover.robot +- !Location + range: + end: + character: 17 + line: 146 + start: + character: 14 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 47 + line: 146 + start: + character: 44 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 66 + line: 146 + start: + character: 63 + line: 146 + uri: tests/hover.robot +- !Location + range: + end: + character: 24 + line: 151 + start: + character: 21 + line: 151 + uri: tests/hover.robot +- !Location + range: + end: + character: 34 + line: 154 + start: + character: 31 + line: 154 + uri: tests/hover.robot +- !Location + range: + end: + character: 13 + line: 158 + start: + character: 10 + line: 158 + uri: tests/hover.robot +- !Location + range: + end: + character: 12 + line: 161 + start: + character: 9 + line: 161 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 164 + start: + character: 8 + line: 164 + uri: tests/hover.robot +- !Location + range: + end: + character: 12 + line: 167 + start: + character: 9 + line: 167 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 + uri: tests/hover.robot +- !Location + range: + end: + character: 21 + line: 173 + start: + character: 18 + line: 173 + uri: tests/hover.robot +- !Location + range: + end: + character: 40 + line: 178 + start: + character: 37 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 65 + line: 178 + start: + character: 62 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 82 + line: 178 + start: + character: 79 + line: 178 + uri: tests/hover.robot +- !Location + range: + end: + character: 62 + line: 183 + start: + character: 59 + line: 183 + uri: tests/hover.robot +- !Location + range: + end: + character: 27 + line: 188 + start: + character: 24 + line: 188 + uri: tests/hover.robot +- !Location + range: + end: + character: 22 + line: 242 + start: + character: 19 + line: 242 + uri: tests/hover.robot +- !Location + range: + end: + character: 23 + line: 251 + start: + character: 20 + line: 251 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 270 + start: + character: 4 + line: 270 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 272 + start: + character: 4 + line: 272 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 280 + start: + character: 4 + line: 280 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 282 + start: + character: 4 + line: 282 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 290 + start: + character: 4 + line: 290 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 292 + start: + character: 4 + line: 292 + uri: tests/hover.robot +- !Location + range: + end: + character: 11 + line: 299 + start: + character: 8 + line: 299 + uri: tests/hover.robot +- !Location + range: + end: + character: 7 + line: 7 + start: + character: 4 + line: 7 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 9 + start: + character: 4 + line: 9 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 10 + start: + character: 4 + line: 10 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 12 + start: + character: 4 + line: 12 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 13 + start: + character: 4 + line: 13 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 14 + start: + character: 4 + line: 14 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 16 + start: + character: 4 + line: 16 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 23 + start: + character: 4 + line: 23 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 24 + start: + character: 4 + line: 24 + uri: tests/playground.robot +- !Location + range: + end: + character: 7 + line: 36 + start: + character: 4 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 115 + start: + character: 4 + line: 115 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 123 + start: + character: 4 + line: 123 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 134 + start: + character: 4 + line: 134 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 135 + start: + character: 4 + line: 135 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 139 + start: + character: 4 + line: 139 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 143 + start: + character: 4 + line: 143 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 147 + start: + character: 4 + line: 147 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 153 + start: + character: 4 + line: 153 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 155 + start: + character: 4 + line: 155 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 163 + start: + character: 4 + line: 163 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 165 + start: + character: 4 + line: 165 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 173 + start: + character: 4 + line: 173 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 175 + start: + character: 4 + line: 175 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 188 + start: + character: 4 + line: 188 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 189 + start: + character: 4 + line: 189 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 202 + start: + character: 4 + line: 202 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 203 + start: + character: 4 + line: 203 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 206 + start: + character: 18 + line: 206 + uri: tests/references.robot +- !Location + range: + end: + character: 7 + line: 12 + start: + character: 4 + line: 12 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 16 + start: + character: 4 + line: 16 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 21 + start: + character: 4 + line: 21 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/setup_teardown.robot +- !Location + range: + end: + character: 11 + line: 23 + start: + character: 8 + line: 23 + uri: tests/symbols.robot +- !Location + range: + end: + character: 11 + line: 30 + start: + character: 8 + line: 30 + uri: tests/symbols.robot +- !Location + range: + end: + character: 7 + line: 28 + start: + character: 4 + line: 28 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 62 + start: + character: 4 + line: 62 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 63 + start: + character: 4 + line: 63 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 64 + start: + character: 4 + line: 64 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 65 + start: + character: 4 + line: 65 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 70 + start: + character: 4 + line: 70 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 71 + start: + character: 4 + line: 71 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 75 + start: + character: 4 + line: 75 + uri: tests/templates.robot +- !Location + range: + end: + character: 37 + line: 76 + start: + character: 34 + line: 76 + uri: tests/templates.robot +- !Location + range: + end: + character: 72 + line: 76 + start: + character: 69 + line: 76 + uri: tests/templates.robot +- !Location + range: + end: + character: 11 + line: 82 + start: + character: 8 + line: 82 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 86 + start: + character: 4 + line: 86 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 90 + start: + character: 4 + line: 90 + uri: tests/templates.robot +- !Location + range: + end: + character: 7 + line: 50 + start: + character: 4 + line: 50 + uri: tests/templates2.robot +- !Location + range: + end: + character: 7 + line: 54 + start: + character: 4 + line: 54 + uri: tests/templates2.robot +- !Location + range: + end: + character: 39 + line: 1 + start: + character: 36 + line: 1 + uri: tests/variables.robot +- !Location + range: + end: + character: 72 + line: 1 + start: + character: 69 + line: 1 + uri: tests/variables.robot +- !Location + range: + end: + character: 17 + line: 2 + start: + character: 14 + line: 2 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 18 + start: + character: 4 + line: 18 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 19 + start: + character: 4 + line: 19 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 20 + start: + character: 4 + line: 20 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 21 + start: + character: 4 + line: 21 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 4 + line: 22 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 23 + start: + character: 4 + line: 23 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 24 + start: + character: 4 + line: 24 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 25 + start: + character: 4 + line: 25 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 26 + start: + character: 4 + line: 26 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 27 + start: + character: 4 + line: 27 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 28 + start: + character: 4 + line: 28 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 29 + start: + character: 4 + line: 29 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 30 + start: + character: 4 + line: 30 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 31 + start: + character: 4 + line: 31 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 33 + start: + character: 4 + line: 33 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 34 + start: + character: 4 + line: 34 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 35 + start: + character: 4 + line: 35 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 36 + start: + character: 4 + line: 36 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 37 + start: + character: 4 + line: 37 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 38 + start: + character: 4 + line: 38 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 39 + start: + character: 4 + line: 39 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 40 + start: + character: 4 + line: 40 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 41 + start: + character: 4 + line: 41 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 42 + start: + character: 4 + line: 42 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 43 + start: + character: 4 + line: 43 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 44 + start: + character: 4 + line: 44 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 45 + start: + character: 4 + line: 45 + uri: tests/variables.robot +- !Location + range: + end: + character: 21 + line: 49 + start: + character: 18 + line: 49 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 53 + start: + character: 8 + line: 53 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 60 + start: + character: 4 + line: 60 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 61 + start: + character: 4 + line: 61 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 62 + start: + character: 4 + line: 62 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 63 + start: + character: 4 + line: 63 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 66 + start: + character: 4 + line: 66 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 67 + start: + character: 4 + line: 67 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 69 + start: + character: 4 + line: 69 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 72 + start: + character: 4 + line: 72 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 87 + start: + character: 8 + line: 87 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 89 + start: + character: 8 + line: 89 + uri: tests/variables.robot +- !Location + range: + end: + character: 23 + line: 96 + start: + character: 20 + line: 96 + uri: tests/variables.robot +- !Location + range: + end: + character: 43 + line: 109 + start: + character: 40 + line: 109 + uri: tests/variables.robot +- !Location + range: + end: + character: 34 + line: 111 + start: + character: 31 + line: 111 + uri: tests/variables.robot +- !Location + range: + end: + character: 36 + line: 112 + start: + character: 33 + line: 112 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 128 + start: + character: 4 + line: 128 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 130 + start: + character: 4 + line: 130 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 131 + start: + character: 4 + line: 131 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 155 + start: + character: 4 + line: 155 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 163 + start: + character: 4 + line: 163 + uri: tests/variables.robot +- !Location + range: + end: + character: 37 + line: 164 + start: + character: 34 + line: 164 + uri: tests/variables.robot +- !Location + range: + end: + character: 72 + line: 164 + start: + character: 69 + line: 164 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 170 + start: + character: 8 + line: 170 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 174 + start: + character: 4 + line: 174 + uri: tests/variables.robot +- !Location + range: + end: + character: 7 + line: 178 + start: + character: 4 + line: 178 + uri: tests/variables.robot +- !Location + range: + end: + character: 11 + line: 9 + start: + character: 8 + line: 9 + uri: tests1/first.robot +- !Location + range: + end: + character: 11 + line: 12 + start: + character: 8 + line: 12 + uri: tests1/first.robot +- !Location + range: + end: + character: 7 + line: 33 + start: + character: 4 + line: 33 + uri: tests1/first.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out new file mode 100644 index 00000000..c12f9216 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-004-multiple_references].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 4 + line: 38 + name: multiple references +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out new file mode 100644 index 00000000..209002c3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-011-multiple_references].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 11 + line: 38 + name: multiple references +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out new file mode 100644 index 00000000..79f59fc2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-038-017-multiple_references].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 17 + line: 38 + name: multiple references +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out new file mode 100644 index 00000000..4b006fdd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-012-multiple_references_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 12 + line: 40 + name: multiple references with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out new file mode 100644 index 00000000..e63d3621 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-019-multiple_references_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 19 + line: 40 + name: multiple references with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out new file mode 100644 index 00000000..23b78b58 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-025-multiple_references_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 25 + line: 40 + name: multiple references with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out new file mode 100644 index 00000000..7a3acc31 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-035-multiple_variables].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 35 + line: 40 + name: multiple variables +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out new file mode 100644 index 00000000..2b22a2d5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-037-multiple_variables].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 37 + line: 40 + name: multiple variables +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out new file mode 100644 index 00000000..b6b34dcb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-040-039-multiple_variables].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 39 + line: 40 + name: multiple variables +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out new file mode 100644 index 00000000..796960a1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-013-a_var_from_resource].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 13 + line: 43 + name: a var from resource +result: +- !Location + range: + end: + character: 20 + line: 4 + start: + character: 2 + line: 4 + 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: + character: 31 + line: 41 + start: + character: 13 + line: 41 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 31 + line: 43 + start: + character: 13 + line: 43 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out new file mode 100644 index 00000000..5a67acb5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-022-a_var_from_resource].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 22 + line: 43 + name: a var from resource +result: +- !Location + range: + end: + character: 20 + line: 4 + start: + character: 2 + line: 4 + 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: + character: 31 + line: 41 + start: + character: 13 + line: 41 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 31 + line: 43 + start: + character: 13 + line: 43 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out new file mode 100644 index 00000000..3f8b8bf7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-043-030-a_var_from_resource].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 30 + line: 43 + name: a var from resource +result: +- !Location + range: + end: + character: 20 + line: 4 + start: + character: 2 + line: 4 + 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: + character: 31 + line: 41 + start: + character: 13 + line: 41 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 31 + line: 43 + start: + character: 13 + line: 43 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out new file mode 100644 index 00000000..726e0f8d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-018-template_keyword].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 18 + line: 47 + name: template keyword +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out new file mode 100644 index 00000000..f7b5fd2b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-025-template_keyword].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 25 + line: 47 + name: template keyword +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out new file mode 100644 index 00000000..0bafd77c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-047-031-template_keyword].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 31 + line: 47 + name: template keyword +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out new file mode 100644 index 00000000..b9ec1e9a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-026-template_keyword_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 26 + line: 53 + name: template keyword with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out new file mode 100644 index 00000000..773ddab1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-033-template_keyword_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 33 + line: 53 + name: template keyword with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out new file mode 100644 index 00000000..36e33297 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-053-039-template_keyword_with_namespace].out @@ -0,0 +1,239 @@ +data: !GeneratedTestData + character: 39 + line: 53 + name: template keyword with namespace +result: +- !Location + range: + end: + character: 0 + line: 3420 + start: + character: 0 + line: 3419 + 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: + character: 37 + line: 14 + start: + character: 23 + line: 14 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 28 + line: 16 + start: + character: 14 + line: 16 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 29 + line: 30 + start: + character: 15 + line: 30 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 32 + start: + character: 26 + line: 32 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 18 + line: 36 + start: + character: 4 + line: 36 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 26 + line: 38 + start: + character: 12 + line: 38 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 32 + line: 45 + start: + character: 18 + line: 45 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 40 + line: 51 + start: + character: 26 + line: 51 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 37 + line: 16 + start: + character: 23 + line: 16 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 18 + start: + character: 14 + line: 18 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 32 + start: + character: 15 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 34 + start: + character: 26 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 38 + start: + character: 4 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 26 + line: 40 + start: + character: 12 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 47 + start: + character: 18 + line: 47 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 53 + start: + character: 26 + line: 53 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 213 + start: + character: 8 + line: 213 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out new file mode 100644 index 00000000..06c595d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-006-Keyword_assignement].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 6 + line: 59 + name: Keyword assignement +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out new file mode 100644 index 00000000..65e07418 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-009-Keyword_assignement].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 9 + line: 59 + name: Keyword assignement +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out new file mode 100644 index 00000000..bbf98797 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-059-011-Keyword_assignement].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 11 + line: 59 + name: Keyword assignement +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out new file mode 100644 index 00000000..b4e3c9d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-005-Keyword_reassignment_with_equals_sign].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 5 + line: 62 + name: Keyword reassignment with equals sign +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out new file mode 100644 index 00000000..960862d3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-008-Keyword_reassignment_with_equals_sign].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 8 + line: 62 + name: Keyword reassignment with equals sign +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out new file mode 100644 index 00000000..c3e7faac --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-062-011-Keyword_reassignment_with_equals_sign].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 11 + line: 62 + name: Keyword reassignment with equals sign +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out new file mode 100644 index 00000000..ad941ae7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-025-Keyword_variable_reference].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 25 + line: 64 + name: Keyword variable reference +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out new file mode 100644 index 00000000..cd80a42b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-028-Keyword_variable_reference].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 28 + line: 64 + name: Keyword variable reference +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out new file mode 100644 index 00000000..f01a7145 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-064-030-Keyword_variable_reference].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 30 + line: 64 + name: Keyword variable reference +result: +- !Location + range: + end: + character: 12 + line: 59 + start: + character: 6 + line: 59 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 61 + start: + character: 25 + line: 61 + uri: tests/references.robot +- !Location + range: + end: + character: 12 + line: 62 + start: + character: 6 + line: 62 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 64 + start: + character: 25 + line: 64 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out new file mode 100644 index 00000000..abc44c5c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-015-Embedded_keyword_in_setup].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 15 + line: 69 + name: Embedded keyword in setup +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out new file mode 100644 index 00000000..dfca16cb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-029-Embedded_keyword_in_setup].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 29 + line: 69 + name: Embedded keyword in setup +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out new file mode 100644 index 00000000..6ebdac04 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-069-043-Embedded_keyword_in_setup].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 43 + line: 69 + name: Embedded keyword in setup +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out new file mode 100644 index 00000000..4bb2cd52 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-018-Embedded_keyword_in_teardown].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 18 + line: 71 + name: Embedded keyword in teardown +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out new file mode 100644 index 00000000..71ec1eb0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-034-Embedded_keyword_in_teardown].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 34 + line: 71 + name: Embedded keyword in teardown +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out new file mode 100644 index 00000000..ae7f83a5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-071-049-Embedded_keyword_in_teardown].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 49 + line: 71 + name: Embedded keyword in teardown +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out new file mode 100644 index 00000000..c31b5aca --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-004-Embedded_keyword].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 4 + line: 74 + name: Embedded keyword +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out new file mode 100644 index 00000000..d7cffb22 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-018-Embedded_keyword].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 18 + line: 74 + name: Embedded keyword +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out new file mode 100644 index 00000000..dc5f6638 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-074-032-Embedded_keyword].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 32 + line: 74 + name: Embedded keyword +result: +- !Location + range: + end: + character: 44 + line: 69 + start: + character: 15 + line: 69 + uri: tests/references.robot +- !Location + range: + end: + character: 50 + line: 71 + start: + character: 18 + line: 71 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 74 + start: + character: 4 + line: 74 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out new file mode 100644 index 00000000..804c9436 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-004-Embedded_keyword_with_regex_only_numbers].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 4 + line: 77 + name: Embedded keyword with regex only numbers +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out new file mode 100644 index 00000000..4d0131af --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-014-Embedded_keyword_with_regex_only_numbers].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 14 + line: 77 + name: Embedded keyword with regex only numbers +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out new file mode 100644 index 00000000..d67ce129 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-077-024-Embedded_keyword_with_regex_only_numbers].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 24 + line: 77 + name: Embedded keyword with regex only numbers +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out new file mode 100644 index 00000000..79c1a7e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-004-Embedded_keyword_with_regex_only_numbers].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 4 + line: 80 + name: Embedded keyword with regex only numbers +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out new file mode 100644 index 00000000..b3602634 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-016-Embedded_keyword_with_regex_only_numbers].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 16 + line: 80 + name: Embedded keyword with regex only numbers +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out new file mode 100644 index 00000000..0a748266 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-080-028-Embedded_keyword_with_regex_only_numbers].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 28 + line: 80 + name: Embedded keyword with regex only numbers +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out new file mode 100644 index 00000000..557bd68d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-004-Embedded_keyword_with_regex_a_to_z_an_space].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 4 + line: 82 + name: Embedded keyword with regex a to z an space +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out new file mode 100644 index 00000000..c857f6e4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-018-Embedded_keyword_with_regex_a_to_z_an_space].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 18 + line: 82 + name: Embedded keyword with regex a to z an space +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out new file mode 100644 index 00000000..17d3bd0c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-082-031-Embedded_keyword_with_regex_a_to_z_an_space].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 31 + line: 82 + name: Embedded keyword with regex a to z an space +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out new file mode 100644 index 00000000..77469f1e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-004-Embedded_keyword_with_variable].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 4 + line: 85 + name: Embedded keyword with variable +result: +- !Location + range: + end: + character: 35 + line: 85 + start: + character: 4 + line: 85 + uri: tests/references.robot +- !Location + range: + end: + character: 30 + line: 88 + start: + character: 4 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out new file mode 100644 index 00000000..0f43e0d2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-019-Embedded_keyword_with_variable].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 19 + line: 85 + name: Embedded keyword with variable +result: +- !Location + range: + end: + character: 9 + line: 26 + start: + character: 2 + line: 26 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 85 + start: + character: 13 + line: 85 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out new file mode 100644 index 00000000..52c5bbde --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-085-034-Embedded_keyword_with_variable].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 34 + line: 85 + name: Embedded keyword with variable +result: +- !Location + range: + end: + character: 35 + line: 85 + start: + character: 4 + line: 85 + uri: tests/references.robot +- !Location + range: + end: + character: 30 + line: 88 + start: + character: 4 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out new file mode 100644 index 00000000..3abc64ec --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-004-Embedded_keyword_with_emojii_variable].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 4 + line: 88 + name: Embedded keyword with emojii variable +result: +- !Location + range: + end: + character: 35 + line: 85 + start: + character: 4 + line: 85 + uri: tests/references.robot +- !Location + range: + end: + character: 30 + line: 88 + start: + character: 4 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out new file mode 100644 index 00000000..5bce4f47 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-019-Embedded_keyword_with_emojii_variable].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 19 + line: 88 + name: Embedded keyword with emojii variable +result: +- !Location + range: + end: + character: 35 + line: 85 + start: + character: 4 + line: 85 + uri: tests/references.robot +- !Location + range: + end: + character: 30 + line: 88 + start: + character: 4 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out new file mode 100644 index 00000000..3d4eb2de --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-088-034-Embedded_keyword_with_emojii_variable].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 34 + line: 88 + name: Embedded keyword with emojii variable +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out new file mode 100644 index 00000000..c1ef4161 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-004-Ambiguous_Embedded_keyword_with_regex_a_to_z].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 4 + line: 91 + name: Ambiguous Embedded keyword with regex a to z +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out new file mode 100644 index 00000000..f8cd3e68 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-014-Ambiguous_Embedded_keyword_with_regex_a_to_z].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 14 + line: 91 + name: Ambiguous Embedded keyword with regex a to z +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out new file mode 100644 index 00000000..a2d88bdb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-091-024-Ambiguous_Embedded_keyword_with_regex_a_to_z].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 24 + line: 91 + name: Ambiguous Embedded keyword with regex a to z +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out new file mode 100644 index 00000000..c81b5382 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-004-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 4 + line: 93 + name: Invalid Embedded keyword with regex a to z ignored +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out new file mode 100644 index 00000000..71de4399 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-014-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 14 + line: 93 + name: Invalid Embedded keyword with regex a to z ignored +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out new file mode 100644 index 00000000..81e85435 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-093-024-Invalid_Embedded_keyword_with_regex_a_to_z_ignored].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 24 + line: 93 + name: Invalid Embedded keyword with regex a to z ignored +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out new file mode 100644 index 00000000..380a2c8e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-004-Embedded_keyword_with_regex_a_to_z_and_space].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 4 + line: 95 + name: Embedded keyword with regex a to z and space +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out new file mode 100644 index 00000000..45868a22 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-020-Embedded_keyword_with_regex_a_to_z_and_space].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 20 + line: 95 + name: Embedded keyword with regex a to z and space +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out new file mode 100644 index 00000000..aef747a1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-095-035-Embedded_keyword_with_regex_a_to_z_and_space].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 35 + line: 95 + name: Embedded keyword with regex a to z and space +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out new file mode 100644 index 00000000..582cd9e3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-004-Embedded_keyword_with_emoji].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 4 + line: 98 + name: Embedded keyword with emoji +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out new file mode 100644 index 00000000..61d63cf4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-020-Embedded_keyword_with_emoji].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 20 + line: 98 + name: Embedded keyword with emoji +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out new file mode 100644 index 00000000..008c4d90 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-098-035-Embedded_keyword_with_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 35 + line: 98 + name: Embedded keyword with emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out new file mode 100644 index 00000000..41370206 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-004-a_keyword_with_emoji].out @@ -0,0 +1,86 @@ +data: !GeneratedTestData + character: 4 + line: 103 + name: a keyword with emoji +result: +- !Location + range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 6 + line: 86 + start: + character: 4 + line: 86 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 6 + line: 88 + start: + character: 4 + line: 88 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 6 + line: 80 + start: + character: 4 + line: 80 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 6 + line: 82 + start: + character: 4 + line: 82 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 6 + line: 109 + start: + character: 4 + line: 109 + uri: tests/goto.robot +- !Location + range: + end: + character: 6 + line: 214 + start: + character: 4 + line: 214 + uri: tests/hover.robot +- !Location + range: + end: + character: 6 + line: 103 + start: + character: 4 + line: 103 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 105 + start: + character: 18 + line: 105 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out new file mode 100644 index 00000000..a7811100 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-006-a_keyword_with_emoji].out @@ -0,0 +1,86 @@ +data: !GeneratedTestData + character: 6 + line: 103 + name: a keyword with emoji +result: +- !Location + range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 6 + line: 86 + start: + character: 4 + line: 86 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 6 + line: 88 + start: + character: 4 + line: 88 + uri: tests/code_action_show_documentation.robot +- !Location + range: + end: + character: 6 + line: 80 + start: + character: 4 + line: 80 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 6 + line: 82 + start: + character: 4 + line: 82 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 6 + line: 109 + start: + character: 4 + line: 109 + uri: tests/goto.robot +- !Location + range: + end: + character: 6 + line: 214 + start: + character: 4 + line: 214 + uri: tests/hover.robot +- !Location + range: + end: + character: 6 + line: 103 + start: + character: 4 + line: 103 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 105 + start: + character: 18 + line: 105 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out new file mode 100644 index 00000000..1e831717 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-103-007-a_keyword_with_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 7 + line: 103 + name: a keyword with emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out new file mode 100644 index 00000000..576cbb30 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-004-a_keyword_with_namespace_and_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 4 + line: 105 + name: a keyword with namespace and emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out new file mode 100644 index 00000000..1d580206 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-013-a_keyword_with_namespace_and_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 105 + name: a keyword with namespace and emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out new file mode 100644 index 00000000..8ed065a8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-021-a_keyword_with_namespace_and_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 21 + line: 105 + name: a keyword with namespace and emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out new file mode 100644 index 00000000..ebe5369f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-028-a_variable_with_emoji].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 28 + line: 105 + name: a variable with emoji +result: +- !Location + range: + end: + character: 4 + line: 27 + start: + character: 2 + line: 27 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 88 + start: + character: 13 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 105 + start: + character: 26 + line: 105 + uri: tests/references.robot +- !Location + range: + end: + character: 47 + line: 105 + start: + character: 45 + line: 105 + uri: tests/references.robot +- !Location + range: + end: + character: 53 + line: 105 + start: + character: 51 + line: 105 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-031-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-031-a_variable_with_emoji].out new file mode 100644 index 00000000..c5cb6c5c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-031-a_variable_with_emoji].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 31 + line: 105 + name: a variable with emoji +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-033-a_variable_with_emoji].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-033-a_variable_with_emoji].out new file mode 100644 index 00000000..3afbe753 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-105-033-a_variable_with_emoji].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 33 + line: 105 + name: a variable with emoji +result: +- !Location + range: + end: + character: 50 + line: 30 + start: + character: 41 + line: 30 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 49 + line: 31 + start: + character: 40 + line: 31 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 42 + line: 105 + start: + character: 33 + line: 105 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out new file mode 100644 index 00000000..bc3a80d9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-041-short_keyword_argument].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 41 + line: 111 + name: short keyword argument +result: +- !Location + range: + end: + character: 22 + line: 23 + start: + character: 21 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 42 + line: 70 + start: + character: 41 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 42 + line: 143 + start: + character: 41 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 42 + line: 235 + start: + character: 41 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 42 + line: 111 + start: + character: 41 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out new file mode 100644 index 00000000..dfb4c152 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-048-keyword_argument_with_spaces].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 48 + line: 111 + name: keyword argument with spaces +result: +- !Location + range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 59 + line: 70 + start: + character: 48 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 59 + line: 235 + start: + character: 48 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 59 + line: 111 + start: + character: 48 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out new file mode 100644 index 00000000..af79ccb3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-053-keyword_argument_with_spaces].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 53 + line: 111 + name: keyword argument with spaces +result: +- !Location + range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 59 + line: 70 + start: + character: 48 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 59 + line: 235 + start: + character: 48 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 59 + line: 111 + start: + character: 48 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out new file mode 100644 index 00000000..c1e1a5fd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-058-keyword_argument_with_spaces].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 58 + line: 111 + name: keyword argument with spaces +result: +- !Location + range: + end: + character: 40 + line: 23 + start: + character: 29 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 59 + line: 70 + start: + character: 48 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 59 + line: 143 + start: + character: 48 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 59 + line: 235 + start: + character: 48 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 59 + line: 111 + start: + character: 48 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out new file mode 100644 index 00000000..a33cc95b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-066-another_keyword_argument].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 66 + line: 111 + name: another keyword argument +result: +- !Location + range: + end: + character: 60 + line: 23 + start: + character: 48 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 78 + line: 70 + start: + character: 66 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 78 + line: 143 + start: + character: 66 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 78 + line: 235 + start: + character: 66 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 78 + line: 111 + start: + character: 66 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out new file mode 100644 index 00000000..7212ab40 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-072-another_keyword_argument].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 72 + line: 111 + name: another keyword argument +result: +- !Location + range: + end: + character: 60 + line: 23 + start: + character: 48 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 78 + line: 70 + start: + character: 66 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 78 + line: 143 + start: + character: 66 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 78 + line: 235 + start: + character: 66 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 78 + line: 111 + start: + character: 66 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out new file mode 100644 index 00000000..7f551db0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-111-077-another_keyword_argument].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 77 + line: 111 + name: another keyword argument +result: +- !Location + range: + end: + character: 60 + line: 23 + start: + character: 48 + line: 23 + uri: resources/firstresource.resource +- !Location + range: + end: + character: 78 + line: 70 + start: + character: 66 + line: 70 + uri: tests/document_highlight.robot +- !Location + range: + end: + character: 78 + line: 143 + start: + character: 66 + line: 143 + uri: tests/goto.robot +- !Location + range: + end: + character: 78 + line: 235 + start: + character: 66 + line: 235 + uri: tests/hover.robot +- !Location + range: + end: + character: 78 + line: 111 + start: + character: 66 + line: 111 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out new file mode 100644 index 00000000..8dc95fd2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-001-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 1 + line: 125 + name: Embedded keyword +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out new file mode 100644 index 00000000..53fd29e3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-002-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 2 + line: 125 + name: Embedded keyword +result: +- !Location + range: + end: + character: 25 + line: 77 + start: + character: 4 + line: 77 + uri: tests/references.robot +- !Location + range: + end: + character: 29 + line: 80 + start: + character: 4 + line: 80 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out new file mode 100644 index 00000000..6e0ad34f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-006-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 6 + line: 125 + name: Embedded keyword +result: +- !Location + range: + end: + character: 12 + line: 125 + start: + character: 6 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 128 + start: + character: 19 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out new file mode 100644 index 00000000..6ea55725 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-009-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 9 + line: 125 + name: Embedded keyword +result: +- !Location + range: + end: + character: 12 + line: 125 + start: + character: 6 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 128 + start: + character: 19 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out new file mode 100644 index 00000000..84f55937 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-125-011-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 11 + line: 125 + name: Embedded keyword +result: +- !Location + range: + end: + character: 12 + line: 125 + start: + character: 6 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 128 + start: + character: 19 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out new file mode 100644 index 00000000..25c80c33 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-019-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 19 + line: 128 + name: embedded argument usage +result: +- !Location + range: + end: + character: 12 + line: 125 + start: + character: 6 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 128 + start: + character: 19 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out new file mode 100644 index 00000000..0606ae37 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-022-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 22 + line: 128 + name: embedded argument usage +result: +- !Location + range: + end: + character: 12 + line: 125 + start: + character: 6 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 128 + start: + character: 19 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out new file mode 100644 index 00000000..adb9dd44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-024-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 24 + line: 128 + name: embedded argument usage +result: +- !Location + range: + end: + character: 12 + line: 125 + start: + character: 6 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 128 + start: + character: 19 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out new file mode 100644 index 00000000..c5cb2bbf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-038-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 38 + line: 128 + name: embedded argument usage +result: +- !Location + range: + end: + character: 37 + line: 125 + start: + character: 32 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 128 + start: + character: 38 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out new file mode 100644 index 00000000..0fd66096 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-040-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 40 + line: 128 + name: embedded argument usage +result: +- !Location + range: + end: + character: 37 + line: 125 + start: + character: 32 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 128 + start: + character: 38 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out new file mode 100644 index 00000000..572997b9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-128-042-embedded_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 42 + line: 128 + name: embedded argument usage +result: +- !Location + range: + end: + character: 37 + line: 125 + start: + character: 32 + line: 125 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 128 + start: + character: 38 + line: 128 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out new file mode 100644 index 00000000..113e922d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-001-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 1 + line: 132 + name: Embedded keyword +result: +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 132 + start: + character: 0 + line: 132 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out new file mode 100644 index 00000000..2bfb4b3a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-132-002-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 2 + line: 132 + name: Embedded keyword +result: +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 132 + start: + character: 0 + line: 132 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out new file mode 100644 index 00000000..83c0a620 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-001-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 1 + line: 137 + name: Embedded keyword +result: +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 137 + start: + character: 0 + line: 137 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out new file mode 100644 index 00000000..0d146e5d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-137-002-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 2 + line: 137 + name: Embedded keyword +result: +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 137 + start: + character: 0 + line: 137 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out new file mode 100644 index 00000000..1e77e37e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-001-Embedded_keyword].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 1 + line: 141 + name: Embedded keyword +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out new file mode 100644 index 00000000..4d4916d4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-017-Embedded_keyword].out @@ -0,0 +1,59 @@ +data: !GeneratedTestData + character: 17 + line: 141 + name: Embedded keyword +result: +- !Location + range: + end: + character: 32 + line: 82 + start: + character: 4 + line: 82 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 91 + start: + character: 4 + line: 91 + uri: tests/references.robot +- !Location + range: + end: + character: 25 + line: 93 + start: + character: 4 + line: 93 + uri: tests/references.robot +- !Location + range: + end: + character: 36 + line: 95 + start: + character: 4 + line: 95 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 98 + start: + character: 4 + line: 98 + uri: tests/references.robot +- !Location + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out new file mode 100644 index 00000000..ca271ca5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-141-033-Embedded_keyword].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 33 + line: 141 + name: Embedded keyword +result: +- !Location + range: + end: + character: 33 + line: 141 + start: + character: 28 + line: 141 + uri: tests/references.robot +- !Location + range: + end: + character: 41 + line: 143 + start: + character: 36 + line: 143 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out new file mode 100644 index 00000000..ceab6d33 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-001-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 1 + line: 145 + name: Embedded keyword +result: +- !Location + range: + end: + character: 35 + line: 85 + start: + character: 4 + line: 85 + uri: tests/references.robot +- !Location + range: + end: + character: 30 + line: 88 + start: + character: 4 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out new file mode 100644 index 00000000..40a1f9db --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-145-002-Embedded_keyword].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 2 + line: 145 + name: Embedded keyword +result: +- !Location + range: + end: + character: 35 + line: 85 + start: + character: 4 + line: 85 + uri: tests/references.robot +- !Location + range: + end: + character: 30 + line: 88 + start: + character: 4 + line: 88 + uri: tests/references.robot +- !Location + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out new file mode 100644 index 00000000..a0dfc0bd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-021-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 150 + name: another argument +result: +- !Location + range: + end: + character: 26 + line: 150 + start: + character: 21 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 155 + start: + character: 13 + line: 155 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out new file mode 100644 index 00000000..b8984c3e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-023-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 23 + line: 150 + name: another argument +result: +- !Location + range: + end: + character: 26 + line: 150 + start: + character: 21 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 155 + start: + character: 13 + line: 155 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out new file mode 100644 index 00000000..1e441d53 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-025-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 25 + line: 150 + name: another argument +result: +- !Location + range: + end: + character: 26 + line: 150 + start: + character: 21 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 155 + start: + character: 13 + line: 155 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out new file mode 100644 index 00000000..b199916e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-030-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 30 + line: 150 + name: a default value +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out new file mode 100644 index 00000000..48f4abf8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-032-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 32 + line: 150 + name: a default value +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out new file mode 100644 index 00000000..0f223c5d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-150-034-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 34 + line: 150 + name: a default value +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out new file mode 100644 index 00000000..98da93b5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-013-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 13 + line: 153 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out new file mode 100644 index 00000000..158574e8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-153-014-argument_usage].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 14 + line: 153 + name: argument usage +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out new file mode 100644 index 00000000..8d47dd7c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 155 + name: argument usage +result: +- !Location + range: + end: + character: 26 + line: 150 + start: + character: 21 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 155 + start: + character: 13 + line: 155 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out new file mode 100644 index 00000000..54cbd6da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-015-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 15 + line: 155 + name: argument usage +result: +- !Location + range: + end: + character: 26 + line: 150 + start: + character: 21 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 155 + start: + character: 13 + line: 155 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out new file mode 100644 index 00000000..a4775175 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-155-017-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 17 + line: 155 + name: argument usage +result: +- !Location + range: + end: + character: 26 + line: 150 + start: + character: 21 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 155 + start: + character: 13 + line: 155 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out new file mode 100644 index 00000000..4ce016f8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-021-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 159 + name: an argument +result: +- !Location + range: + end: + character: 23 + line: 159 + start: + character: 21 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 163 + start: + character: 13 + line: 163 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out new file mode 100644 index 00000000..1d27c1b5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-022-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 22 + line: 159 + name: an argument +result: +- !Location + range: + end: + character: 23 + line: 159 + start: + character: 21 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 163 + start: + character: 13 + line: 163 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out new file mode 100644 index 00000000..47f0fe2e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-030-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 30 + line: 159 + name: another argument +result: +- !Location + range: + end: + character: 35 + line: 159 + start: + character: 30 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 165 + start: + character: 13 + line: 165 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out new file mode 100644 index 00000000..d25e0a6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-032-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 32 + line: 159 + name: another argument +result: +- !Location + range: + end: + character: 35 + line: 159 + start: + character: 30 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 165 + start: + character: 13 + line: 165 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out new file mode 100644 index 00000000..b5196aad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-034-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 34 + line: 159 + name: another argument +result: +- !Location + range: + end: + character: 35 + line: 159 + start: + character: 30 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 165 + start: + character: 13 + line: 165 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out new file mode 100644 index 00000000..be2df13d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-039-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 39 + line: 159 + name: a default value +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out new file mode 100644 index 00000000..6dbf5c95 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-041-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 41 + line: 159 + name: a default value +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out new file mode 100644 index 00000000..190ab00e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-159-043-a_default_value].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 43 + line: 159 + name: a default value +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out new file mode 100644 index 00000000..1c46f9fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 163 + name: argument usage +result: +- !Location + range: + end: + character: 23 + line: 159 + start: + character: 21 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 163 + start: + character: 13 + line: 163 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out new file mode 100644 index 00000000..772b3620 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-163-014-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 14 + line: 163 + name: argument usage +result: +- !Location + range: + end: + character: 23 + line: 159 + start: + character: 21 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 163 + start: + character: 13 + line: 163 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out new file mode 100644 index 00000000..799c1aa9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 165 + name: argument usage +result: +- !Location + range: + end: + character: 35 + line: 159 + start: + character: 30 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 165 + start: + character: 13 + line: 165 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out new file mode 100644 index 00000000..5e932836 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-015-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 15 + line: 165 + name: argument usage +result: +- !Location + range: + end: + character: 35 + line: 159 + start: + character: 30 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 165 + start: + character: 13 + line: 165 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out new file mode 100644 index 00000000..212e8372 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-165-017-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 17 + line: 165 + name: argument usage +result: +- !Location + range: + end: + character: 35 + line: 159 + start: + character: 30 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 165 + start: + character: 13 + line: 165 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out new file mode 100644 index 00000000..0edd6e0a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-021-an_argument].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 21 + line: 169 + name: an argument +result: +- !Location + range: + end: + character: 22 + line: 169 + start: + character: 21 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 169 + start: + character: 34 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 173 + start: + character: 13 + line: 173 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out new file mode 100644 index 00000000..60d5f118 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-029-another_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 29 + line: 169 + name: another argument +result: +- !Location + range: + end: + character: 30 + line: 169 + start: + character: 29 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 175 + start: + character: 13 + line: 175 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out new file mode 100644 index 00000000..9c77132d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-169-034-argument_usage_in_argument].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 34 + line: 169 + name: argument usage in argument +result: +- !Location + range: + end: + character: 22 + line: 169 + start: + character: 21 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 169 + start: + character: 34 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 173 + start: + character: 13 + line: 173 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out new file mode 100644 index 00000000..8ef73328 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-173-013-argument_usage].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 13 + line: 173 + name: argument usage +result: +- !Location + range: + end: + character: 22 + line: 169 + start: + character: 21 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 169 + start: + character: 34 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 173 + start: + character: 13 + line: 173 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out new file mode 100644 index 00000000..4d932b59 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-175-013-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 13 + line: 175 + name: argument usage +result: +- !Location + range: + end: + character: 30 + line: 169 + start: + character: 29 + line: 169 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 175 + start: + character: 13 + line: 175 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out new file mode 100644 index 00000000..68b155fb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-051-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 51 + line: 179 + name: a global var in doc +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out new file mode 100644 index 00000000..0fd62172 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-053-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 53 + line: 179 + name: a global var in doc +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out new file mode 100644 index 00000000..428bf9c4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-055-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 55 + line: 179 + name: a global var in doc +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out new file mode 100644 index 00000000..fe6502cf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-179-064-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 64 + line: 179 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out new file mode 100644 index 00000000..3154435b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-182-019-an_argument_in_timeout].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 19 + line: 182 + name: an argument in timeout +result: +- !Location + range: + end: + character: 20 + line: 182 + start: + character: 19 + line: 182 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 187 + start: + character: 21 + line: 187 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 187 + start: + character: 34 + line: 187 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 188 + start: + character: 13 + line: 188 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out new file mode 100644 index 00000000..d874d99f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-016-an_argument_in_tags].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 16 + line: 184 + name: an argument in tags +result: +- !Location + range: + end: + character: 18 + line: 184 + start: + character: 14 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 199 + start: + character: 14 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out new file mode 100644 index 00000000..618aec3a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-023-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 23 + line: 184 + name: an argument in tags +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out new file mode 100644 index 00000000..c3ad4c5e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-025-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 25 + line: 184 + name: an argument in tags +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out new file mode 100644 index 00000000..b32a9e12 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-184-027-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 27 + line: 184 + name: an argument in tags +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out new file mode 100644 index 00000000..70c37b6a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-051-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 51 + line: 194 + name: a global var in doc +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out new file mode 100644 index 00000000..0b8aa857 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-053-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 53 + line: 194 + name: a global var in doc +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out new file mode 100644 index 00000000..aff6fec6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-055-a_global_var_in_doc].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 55 + line: 194 + name: a global var in doc +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out new file mode 100644 index 00000000..89164698 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-194-064-an_argument_in_doc].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 64 + line: 194 + name: an argument in doc +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out new file mode 100644 index 00000000..48e79794 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-197-019-an_argument_in_timeout].out @@ -0,0 +1,50 @@ +data: !GeneratedTestData + character: 19 + line: 197 + name: an argument in timeout +result: +- !Location + range: + end: + character: 7 + line: 192 + start: + character: 6 + line: 192 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 193 + start: + character: 21 + line: 193 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 193 + start: + character: 34 + line: 193 + uri: tests/references.robot +- !Location + range: + end: + character: 20 + line: 197 + start: + character: 19 + line: 197 + uri: tests/references.robot +- !Location + range: + end: + character: 14 + line: 202 + start: + character: 13 + line: 202 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out new file mode 100644 index 00000000..53ec66aa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-016-an_argument_in_tags].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 16 + line: 199 + name: an argument in tags +result: +- !Location + range: + end: + character: 18 + line: 184 + start: + character: 14 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 18 + line: 199 + start: + character: 14 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out new file mode 100644 index 00000000..51f3e8e2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-023-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 23 + line: 199 + name: an argument in tags +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out new file mode 100644 index 00000000..aad3df61 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-025-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 25 + line: 199 + name: an argument in tags +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out new file mode 100644 index 00000000..72a4e6da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-199-027-an_argument_in_tags].out @@ -0,0 +1,113 @@ +data: !GeneratedTestData + character: 27 + line: 199 + name: an argument in tags +result: +- !Location + range: + end: + character: 7 + line: 22 + start: + character: 2 + line: 22 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 32 + start: + character: 38 + line: 32 + uri: tests/references.robot +- !Location + range: + end: + character: 54 + line: 34 + start: + character: 49 + line: 34 + uri: tests/references.robot +- !Location + range: + end: + character: 21 + line: 36 + start: + character: 16 + line: 36 + uri: tests/references.robot +- !Location + range: + end: + character: 32 + line: 38 + start: + character: 27 + line: 38 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 40 + start: + character: 35 + line: 40 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 150 + start: + character: 30 + line: 150 + uri: tests/references.robot +- !Location + range: + end: + character: 44 + line: 159 + start: + character: 39 + line: 159 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 179 + start: + character: 51 + line: 179 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 184 + start: + character: 23 + line: 184 + uri: tests/references.robot +- !Location + range: + end: + character: 56 + line: 194 + start: + character: 51 + line: 194 + uri: tests/references.robot +- !Location + range: + end: + character: 28 + line: 199 + start: + character: 23 + line: 199 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out new file mode 100644 index 00000000..9b6290aa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-027-a_local_variable_in_teardown].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 27 + line: 206 + name: a local variable in teardown +result: +- !Location + range: + end: + character: 12 + line: 205 + start: + character: 6 + line: 205 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 206 + start: + character: 27 + line: 206 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out new file mode 100644 index 00000000..1d089f44 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-030-a_local_variable_in_teardown].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 30 + line: 206 + name: a local variable in teardown +result: +- !Location + range: + end: + character: 12 + line: 205 + start: + character: 6 + line: 205 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 206 + start: + character: 27 + line: 206 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out new file mode 100644 index 00000000..fcde94b3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-206-032-a_local_variable_in_teardown].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 32 + line: 206 + name: a local variable in teardown +result: +- !Location + range: + end: + character: 12 + line: 205 + start: + character: 6 + line: 205 + uri: tests/references.robot +- !Location + range: + end: + character: 33 + line: 206 + start: + character: 27 + line: 206 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out new file mode 100644 index 00000000..564119bd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-013-counter_variable].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 13 + line: 210 + name: counter variable +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out new file mode 100644 index 00000000..5ac27107 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-016-counter_variable].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 16 + line: 210 + name: counter variable +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out new file mode 100644 index 00000000..527108aa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-210-019-counter_variable].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 19 + line: 210 + name: counter variable +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out new file mode 100644 index 00000000..b1fb6dc1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-028-counter_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 28 + line: 213 + name: counter variable usage +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out new file mode 100644 index 00000000..c8f2e6cb --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-031-counter_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 31 + line: 213 + name: counter variable usage +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out new file mode 100644 index 00000000..a8de6e19 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-213-034-counter_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 34 + line: 213 + name: counter variable usage +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out new file mode 100644 index 00000000..3c2fff8a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-017-counter_variable_assignment].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 17 + line: 215 + name: counter variable assignment +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out new file mode 100644 index 00000000..e8a0b7cc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-020-counter_variable_assignment].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 20 + line: 215 + name: counter variable assignment +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out new file mode 100644 index 00000000..1dc52277 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-023-counter_variable_assignment].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 23 + line: 215 + name: counter variable assignment +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out new file mode 100644 index 00000000..2c8f14c8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-031-another_counter_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 31 + line: 215 + name: another counter variable usage +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out new file mode 100644 index 00000000..862c5bab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-034-another_counter_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 34 + line: 215 + name: another counter variable usage +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out new file mode 100644 index 00000000..fd6be739 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-215-037-another_counter_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 37 + line: 215 + name: another counter variable usage +result: +- !Location + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: tests/references.robot +- !Location + range: + end: + character: 35 + line: 213 + start: + character: 28 + line: 213 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 215 + start: + character: 17 + line: 215 + uri: tests/references.robot +- !Location + range: + end: + character: 38 + line: 215 + start: + character: 31 + line: 215 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out new file mode 100644 index 00000000..48bb44e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-020-an_argument].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 20 + line: 224 + name: an argument +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out new file mode 100644 index 00000000..7424bb87 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-022-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 22 + line: 224 + name: an argument +result: +- !Location + range: + end: + character: 24 + line: 224 + start: + character: 21 + line: 224 + uri: tests/references.robot +- !Location + range: + end: + character: 55 + line: 226 + start: + character: 52 + line: 226 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out new file mode 100644 index 00000000..05e0db4c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-224-023-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 23 + line: 224 + name: an argument +result: +- !Location + range: + end: + character: 24 + line: 224 + start: + character: 21 + line: 224 + uri: tests/references.robot +- !Location + range: + end: + character: 55 + line: 226 + start: + character: 52 + line: 226 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out new file mode 100644 index 00000000..ccda69ce --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-013-local_variable_definition].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 13 + line: 226 + name: local variable definition +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out new file mode 100644 index 00000000..5a75a7e6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-016-local_variable_definition].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 16 + line: 226 + name: local variable definition +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out new file mode 100644 index 00000000..21a4a8f9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-018-local_variable_definition].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 18 + line: 226 + name: local variable definition +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out new file mode 100644 index 00000000..32801540 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-052-an_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 52 + line: 226 + name: an argument usage +result: +- !Location + range: + end: + character: 24 + line: 224 + start: + character: 21 + line: 224 + uri: tests/references.robot +- !Location + range: + end: + character: 55 + line: 226 + start: + character: 52 + line: 226 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out new file mode 100644 index 00000000..e42782d4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-053-an_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 53 + line: 226 + name: an argument usage +result: +- !Location + range: + end: + character: 24 + line: 224 + start: + character: 21 + line: 224 + uri: tests/references.robot +- !Location + range: + end: + character: 55 + line: 226 + start: + character: 52 + line: 226 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out new file mode 100644 index 00000000..dfedde81 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-226-054-an_argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 54 + line: 226 + name: an argument usage +result: +- !Location + range: + end: + character: 24 + line: 224 + start: + character: 21 + line: 224 + uri: tests/references.robot +- !Location + range: + end: + character: 55 + line: 226 + start: + character: 52 + line: 226 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out new file mode 100644 index 00000000..6a76e92a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-013-local_variable_assignment].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 13 + line: 229 + name: local variable assignment +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out new file mode 100644 index 00000000..2ab964cc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-016-local_variable_assignment].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 16 + line: 229 + name: local variable assignment +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out new file mode 100644 index 00000000..d530a1a1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-229-018-local_variable_assignment].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 18 + line: 229 + name: local variable assignment +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out new file mode 100644 index 00000000..450b3f8e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-016-local_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 16 + line: 231 + name: local variable usage +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out new file mode 100644 index 00000000..32c3633b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-019-local_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 19 + line: 231 + name: local variable usage +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out new file mode 100644 index 00000000..41060d93 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-231-021-local_variable_usage].out @@ -0,0 +1,41 @@ +data: !GeneratedTestData + character: 21 + line: 231 + name: local variable usage +result: +- !Location + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: tests/references.robot +- !Location + range: + end: + character: 19 + line: 229 + start: + character: 13 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 59 + line: 229 + start: + character: 53 + line: 229 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 231 + start: + character: 16 + line: 231 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out new file mode 100644 index 00000000..b808fd26 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-021-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 236 + name: an argument +result: +- !Location + range: + end: + character: 28 + line: 236 + start: + character: 21 + line: 236 + uri: tests/references.robot +- !Location + range: + end: + character: 39 + line: 238 + start: + character: 32 + line: 238 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out new file mode 100644 index 00000000..f712c7a1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-024-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 24 + line: 236 + name: an argument +result: +- !Location + range: + end: + character: 28 + line: 236 + start: + character: 21 + line: 236 + uri: tests/references.robot +- !Location + range: + end: + character: 39 + line: 238 + start: + character: 32 + line: 238 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out new file mode 100644 index 00000000..351c770b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-236-027-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 27 + line: 236 + name: an argument +result: +- !Location + range: + end: + character: 28 + line: 236 + start: + character: 21 + line: 236 + uri: tests/references.robot +- !Location + range: + end: + character: 39 + line: 238 + start: + character: 32 + line: 238 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out new file mode 100644 index 00000000..4c6d58dc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-032-argument_usage_in_while_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 32 + line: 238 + name: argument usage in while option +result: +- !Location + range: + end: + character: 28 + line: 236 + start: + character: 21 + line: 236 + uri: tests/references.robot +- !Location + range: + end: + character: 39 + line: 238 + start: + character: 32 + line: 238 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out new file mode 100644 index 00000000..4dcd5738 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-035-argument_usage_in_while_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 35 + line: 238 + name: argument usage in while option +result: +- !Location + range: + end: + character: 28 + line: 236 + start: + character: 21 + line: 236 + uri: tests/references.robot +- !Location + range: + end: + character: 39 + line: 238 + start: + character: 32 + line: 238 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out new file mode 100644 index 00000000..0d1f2005 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-238-038-argument_usage_in_while_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 38 + line: 238 + name: argument usage in while option +result: +- !Location + range: + end: + character: 28 + line: 236 + start: + character: 21 + line: 236 + uri: tests/references.robot +- !Location + range: + end: + character: 39 + line: 238 + start: + character: 32 + line: 238 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out new file mode 100644 index 00000000..9011c129 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-017-variable_definition_in_if_block].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 17 + line: 247 + name: variable definition in if block +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out new file mode 100644 index 00000000..3c43bf2d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-020-variable_definition_in_if_block].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 20 + line: 247 + name: variable definition in if block +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out new file mode 100644 index 00000000..4c7527d6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-247-022-variable_definition_in_if_block].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 22 + line: 247 + name: variable definition in if block +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out new file mode 100644 index 00000000..f2a957ad --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-017-variable_definition_in_else_block].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 17 + line: 250 + name: variable definition in else block +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out new file mode 100644 index 00000000..3d799f12 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-020-variable_definition_in_else_block].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 20 + line: 250 + name: variable definition in else block +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out new file mode 100644 index 00000000..d0b3fa1b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-250-022-variable_definition_in_else_block].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 22 + line: 250 + name: variable definition in else block +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out new file mode 100644 index 00000000..91ece1c3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-016-variable_usage].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 16 + line: 253 + name: variable usage +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out new file mode 100644 index 00000000..5b8063e3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-019-variable_usage].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 19 + line: 253 + name: variable usage +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out new file mode 100644 index 00000000..4f75e916 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-253-021-variable_usage].out @@ -0,0 +1,32 @@ +data: !GeneratedTestData + character: 21 + line: 253 + name: variable usage +result: +- !Location + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: tests/references.robot +- !Location + range: + end: + character: 23 + line: 250 + start: + character: 17 + line: 250 + uri: tests/references.robot +- !Location + range: + end: + character: 22 + line: 253 + start: + character: 16 + line: 253 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out new file mode 100644 index 00000000..da24a566 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-021-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 258 + name: an argument +result: +- !Location + range: + end: + character: 26 + line: 258 + start: + character: 21 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 261 + start: + character: 19 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out new file mode 100644 index 00000000..ca5648f8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-024-an_argument].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 24 + line: 258 + name: an argument +result: +- !Location + range: + end: + character: 26 + line: 258 + start: + character: 21 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 261 + start: + character: 19 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out new file mode 100644 index 00000000..a89ebc59 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-258-027-an_argument].out @@ -0,0 +1,5 @@ +data: !GeneratedTestData + character: 27 + line: 258 + name: an argument +result: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out new file mode 100644 index 00000000..27cc20e1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-014-local_variable_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 14 + line: 261 + name: local variable usage +result: +- !Location + range: + end: + character: 12 + line: 260 + start: + character: 11 + line: 260 + uri: tests/references.robot +- !Location + range: + end: + character: 15 + line: 261 + start: + character: 14 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out new file mode 100644 index 00000000..48c0dc3e --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-019-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 19 + line: 261 + name: argument usage +result: +- !Location + range: + end: + character: 26 + line: 258 + start: + character: 21 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 261 + start: + character: 19 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out new file mode 100644 index 00000000..6e6a414a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-021-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 21 + line: 261 + name: argument usage +result: +- !Location + range: + end: + character: 26 + line: 258 + start: + character: 21 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 261 + start: + character: 19 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out new file mode 100644 index 00000000..4f2479e5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-023-argument_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 23 + line: 261 + name: argument usage +result: +- !Location + range: + end: + character: 26 + line: 258 + start: + character: 21 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 24 + line: 261 + start: + character: 19 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out new file mode 100644 index 00000000..43685653 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-036-argument_usage_in_while_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 36 + line: 261 + name: argument usage in while option +result: +- !Location + range: + end: + character: 40 + line: 258 + start: + character: 33 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 261 + start: + character: 36 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out new file mode 100644 index 00000000..382d344b --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-039-argument_usage_in_while_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 39 + line: 261 + name: argument usage in while option +result: +- !Location + range: + end: + character: 40 + line: 258 + start: + character: 33 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 261 + start: + character: 36 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out new file mode 100644 index 00000000..a921f1f3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-261-042-argument_usage_in_while_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 42 + line: 261 + name: argument usage in while option +result: +- !Location + range: + end: + character: 40 + line: 258 + start: + character: 33 + line: 258 + uri: tests/references.robot +- !Location + range: + end: + character: 43 + line: 261 + start: + character: 36 + line: 261 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out new file mode 100644 index 00000000..549ecf09 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-031-local_variable_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 31 + line: 274 + name: local variable usage +result: +- !Location + range: + end: + character: 15 + line: 269 + start: + character: 6 + line: 269 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 274 + start: + character: 31 + line: 274 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out new file mode 100644 index 00000000..1eb1aeaf --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-035-local_variable_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 35 + line: 274 + name: local variable usage +result: +- !Location + range: + end: + character: 15 + line: 269 + start: + character: 6 + line: 269 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 274 + start: + character: 31 + line: 274 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out new file mode 100644 index 00000000..6f3f9c10 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-274-039-local_variable_usage].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 39 + line: 274 + name: local variable usage +result: +- !Location + range: + end: + character: 15 + line: 269 + start: + character: 6 + line: 269 + uri: tests/references.robot +- !Location + range: + end: + character: 40 + line: 274 + start: + character: 31 + line: 274 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out new file mode 100644 index 00000000..a4094017 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-039-variable_in_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 39 + line: 281 + name: variable in option +result: +- !Location + range: + end: + character: 16 + line: 270 + start: + character: 6 + line: 270 + uri: tests/references.robot +- !Location + range: + end: + character: 49 + line: 281 + start: + character: 39 + line: 281 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out new file mode 100644 index 00000000..bf8ea212 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-044-variable_in_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 44 + line: 281 + name: variable in option +result: +- !Location + range: + end: + character: 16 + line: 270 + start: + character: 6 + line: 270 + uri: tests/references.robot +- !Location + range: + end: + character: 49 + line: 281 + start: + character: 39 + line: 281 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out new file mode 100644 index 00000000..080ae62d --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_references.test[references.robot-281-048-variable_in_option].out @@ -0,0 +1,23 @@ +data: !GeneratedTestData + character: 48 + line: 281 + name: variable in option +result: +- !Location + range: + end: + character: 16 + line: 270 + start: + character: 6 + line: 270 + uri: tests/references.robot +- !Location + range: + end: + character: 49 + line: 281 + start: + character: 39 + line: 281 + uri: tests/references.robot diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out new file mode 100644 index 00000000..617f8bd4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[__init__.robot].out @@ -0,0 +1,28 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 12 + - 22 + - 53 + - 0 + - 2 + - 0 + - 11 + - 25 + - 0 + - 0 + - 14 + - 26 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out new file mode 100644 index 00000000..2ffd4be5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[bddstyle.robot].out @@ -0,0 +1,293 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 14 + - 34 + - 1 + - 0 + - 22 + - 12 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 0 + - 37 + - 34 + - 1 + - 0 + - 50 + - 1 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 0 + - 31 + - 34 + - 1 + - 0 + - 40 + - 1 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 2 + - 34 + - 1 + - 0 + - 6 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 56 + - 0 + - 0 + - 12 + - 13 + - 56 + - 0 + - 0 + - 17 + - 9 + - 56 + - 0 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 14 + - 39 + - 0 + - 0 + - 23 + - 11 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 37 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 31 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 31 + - 39 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 0 + - 14 + - 2 + - 39 + - 0 + - 1 + - 0 + - 10 + - 33 + - 1 + - 0 + - 14 + - 2 + - 39 + - 0 + - 1 + - 0 + - 10 + - 33 + - 1 + - 0 + - 14 + - 2 + - 39 + - 0 + - 1 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 14 + - 39 + - 0 + - 0 + - 14 + - 4 + - 36 + - 2048 + - 0 + - 5 + - 11 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 37 + - 39 + - 0 + - 0 + - 37 + - 1 + - 36 + - 2048 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 31 + - 39 + - 0 + - 0 + - 31 + - 10 + - 36 + - 2048 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 31 + - 39 + - 0 + - 0 + - 31 + - 5 + - 36 + - 2048 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 31 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out new file mode 100644 index 00000000..693e7bbc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[code_action_show_documentation.robot].out @@ -0,0 +1,823 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 11 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 11 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 25 + - 22 + - 53 + - 0 + - 2 + - 0 + - 9 + - 24 + - 0 + - 0 + - 25 + - 22 + - 53 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 16 + - 22 + - 53 + - 0 + - 2 + - 0 + - 8 + - 24 + - 0 + - 0 + - 25 + - 36 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 9 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 7 + - 53 + - 0 + - 2 + - 0 + - 11 + - 25 + - 0 + - 0 + - 15 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 0 + - 10 + - 25 + - 0 + - 0 + - 14 + - 14 + - 39 + - 1024 + - 3 + - 0 + - 17 + - 28 + - 0 + - 5 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 14 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 17 + - 9 + - 53 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 1 + - 18 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 3 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 13 + - 39 + - 0 + - 0 + - 13 + - 16 + - 36 + - 2048 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 13 + - 39 + - 0 + - 0 + - 13 + - 19 + - 36 + - 2048 + - 2 + - 4 + - 12 + - 39 + - 0 + - 2 + - 4 + - 13 + - 39 + - 0 + - 0 + - 13 + - 17 + - 36 + - 2048 + - 3 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 1 + - 36 + - 2048 + - 0 + - 2 + - 9 + - 39 + - 0 + - 0 + - 9 + - 6 + - 36 + - 2048 + - 3 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 5 + - 36 + - 2048 + - 0 + - 6 + - 9 + - 39 + - 0 + - 0 + - 9 + - 6 + - 36 + - 2048 + - 1 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 14 + - 36 + - 2048 + - 0 + - 15 + - 3 + - 39 + - 0 + - 0 + - 3 + - 6 + - 36 + - 2048 + - 2 + - 4 + - 7 + - 39 + - 0 + - 0 + - 18 + - 13 + - 39 + - 0 + - 3 + - 4 + - 21 + - 39 + - 0 + - 2 + - 4 + - 21 + - 39 + - 0 + - 0 + - 25 + - 19 + - 17 + - 0 + - 2 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 18 + - 36 + - 2048 + - 0 + - 19 + - 3 + - 39 + - 0 + - 0 + - 3 + - 6 + - 36 + - 2048 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 4 + - 39 + - 0 + - 2 + - 4 + - 4 + - 39 + - 0 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 13 + - 34 + - 1 + - 2 + - 4 + - 12 + - 39 + - 0 + - 2 + - 0 + - 12 + - 34 + - 1 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 4 + - 34 + - 1 + - 0 + - 20 + - 10 + - 34 + - 1 + - 2 + - 5 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 4 + - 34 + - 1 + - 0 + - 21 + - 4 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 4 + - 34 + - 1 + - 0 + - 21 + - 4 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 4 + - 34 + - 1 + - 0 + - 22 + - 4 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 7 + - 34 + - 1 + - 0 + - 17 + - 14 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 21 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 56 + - 0 + - 0 + - 9 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out new file mode 100644 index 00000000..85e03cd1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[document_highlight.robot].out @@ -0,0 +1,948 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 11 + - 53 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 25 + - 22 + - 53 + - 0 + - 2 + - 0 + - 9 + - 24 + - 0 + - 0 + - 25 + - 22 + - 53 + - 0 + - 2 + - 0 + - 8 + - 24 + - 0 + - 0 + - 25 + - 36 + - 53 + - 0 + - 3 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 9 + - 53 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 7 + - 53 + - 0 + - 4 + - 0 + - 11 + - 25 + - 0 + - 0 + - 15 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 0 + - 10 + - 25 + - 0 + - 0 + - 14 + - 14 + - 39 + - 1024 + - 3 + - 0 + - 17 + - 28 + - 0 + - 9 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 17 + - 9 + - 53 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 1 + - 18 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 3 + - 4 + - 15 + - 39 + - 1024 + - 3 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 21 + - 39 + - 0 + - 1 + - 4 + - 27 + - 39 + - 0 + - 1 + - 4 + - 27 + - 39 + - 0 + - 1 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 19 + - 39 + - 0 + - 0 + - 23 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 11 + - 56 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 7 + - 12 + - 56 + - 0 + - 0 + - 12 + - 1 + - 21 + - 0 + - 5 + - 4 + - 11 + - 53 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 4 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 4 + - 39 + - 0 + - 2 + - 4 + - 4 + - 39 + - 0 + - 3 + - 0 + - 7 + - 33 + - 1 + - 1 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 0 + - 12 + - 3 + - 39 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 19 + - 3 + - 39 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 8 + - 3 + - 39 + - 1024 + - 4 + - 4 + - 2 + - 35 + - 0 + - 0 + - 10 + - 3 + - 39 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 17 + - 3 + - 39 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 8 + - 3 + - 39 + - 1024 + - 5 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 21 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 56 + - 0 + - 0 + - 9 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 0 + - 9 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 14 + - 39 + - 1024 + - 0 + - 26 + - 15 + - 40 + - 1024 + - 1 + - 4 + - 14 + - 39 + - 1024 + - 0 + - 24 + - 15 + - 40 + - 1024 + - 2 + - 4 + - 14 + - 39 + - 1024 + - 0 + - 26 + - 11 + - 40 + - 1024 + - 0 + - 15 + - 4 + - 40 + - 0 + - 3 + - 0 + - 4 + - 34 + - 1 + - 0 + - 20 + - 10 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 4 + - 0 + - 49 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 9 + - 56 + - 0 + - 0 + - 13 + - 15 + - 7 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 65 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 9 + - 56 + - 0 + - 0 + - 13 + - 15 + - 7 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out new file mode 100644 index 00000000..fb940fc6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[duplicated_resources.robot].out @@ -0,0 +1,148 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 2 + - 0 + - 8 + - 24 + - 0 + - 0 + - 18 + - 41 + - 53 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 18 + - 41 + - 53 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 18 + - 28 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 10 + - 11 + - 53 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 11 + - 8 + - 53 + - 0 + - 2 + - 0 + - 9 + - 24 + - 0 + - 0 + - 13 + - 11 + - 53 + - 0 + - 1 + - 0 + - 9 + - 24 + - 0 + - 0 + - 12 + - 14 + - 53 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 20 + - 39 + - 0 + - 1 + - 4 + - 20 + - 39 + - 0 + - 1 + - 4 + - 18 + - 39 + - 0 + - 1 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 20 + - 39 + - 0 + - 1 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 20 + - 39 + - 0 + - 1 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 18 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out new file mode 100644 index 00000000..deee3283 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[external_libray.robot].out @@ -0,0 +1,58 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 11 + - 11 + - 53 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 12 + - 22 + - 53 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 17 + - 39 + - 0 + - 1 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 26 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out new file mode 100644 index 00000000..5c07a2da --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[foldingrange.robot].out @@ -0,0 +1,358 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 2 + - 0 + - 13 + - 25 + - 256 + - 1 + - 0 + - 3 + - 43 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 3 + - 0 + - 5 + - 33 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 9 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 0 + - 15 + - 2 + - 46 + - 0 + - 2 + - 8 + - 2 + - 35 + - 0 + - 2 + - 12 + - 3 + - 39 + - 1024 + - 1 + - 8 + - 7 + - 35 + - 0 + - 2 + - 12 + - 3 + - 39 + - 1024 + - 1 + - 8 + - 4 + - 35 + - 0 + - 2 + - 12 + - 3 + - 39 + - 1024 + - 1 + - 8 + - 3 + - 35 + - 0 + - 3 + - 8 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 35 + - 0 + - 3 + - 0 + - 8 + - 33 + - 1 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 16 + - 32 + - 0 + - 3 + - 0 + - 9 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 16 + - 31 + - 0 + - 7 + - 0 + - 18 + - 29 + - 0 + - 2 + - 0 + - 13 + - 33 + - 1 + - 1 + - 12 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 3 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 8 + - 2 + - 35 + - 0 + - 1 + - 12 + - 3 + - 39 + - 1024 + - 1 + - 8 + - 4 + - 35 + - 0 + - 1 + - 12 + - 3 + - 39 + - 1024 + - 1 + - 8 + - 3 + - 35 + - 0 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 4 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 3 + - 0 + - 16 + - 33 + - 1 + - 1 + - 12 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 5 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 16 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 3 + - 4 + - 12 + - 39 + - 1024 + - 3 + - 0 + - 14 + - 33 + - 1 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 6 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 3 + - 4 + - 3 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 3 + - 4 + - 3 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 6 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 6 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out new file mode 100644 index 00000000..627361dc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[goto.robot].out @@ -0,0 +1,1018 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 18 + - 11 + - 53 + - 0 + - 3 + - 0 + - 7 + - 24 + - 0 + - 0 + - 27 + - 22 + - 53 + - 0 + - 3 + - 0 + - 9 + - 24 + - 0 + - 0 + - 27 + - 22 + - 53 + - 0 + - 3 + - 0 + - 8 + - 24 + - 0 + - 0 + - 27 + - 36 + - 53 + - 0 + - 4 + - 0 + - 7 + - 24 + - 0 + - 0 + - 24 + - 19 + - 53 + - 0 + - 0 + - 23 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 7 + - 53 + - 0 + - 5 + - 0 + - 17 + - 28 + - 0 + - 3 + - 18 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 7 + - 15 + - 5 + - 56 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 6 + - 6 + - 56 + - 0 + - 0 + - 6 + - 1 + - 21 + - 0 + - 10 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 11 + - 53 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 0 + - 5 + - 4 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 4 + - 4 + - 3 + - 35 + - 0 + - 0 + - 29 + - 2 + - 46 + - 0 + - 3 + - 8 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 35 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 26 + - 39 + - 0 + - 3 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 26 + - 39 + - 0 + - 3 + - 4 + - 16 + - 39 + - 0 + - 2 + - 4 + - 18 + - 39 + - 0 + - 3 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 4 + - 0 + - 16 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 5 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 32 + - 39 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 4 + - 39 + - 0 + - 3 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 0 + - 12 + - 3 + - 39 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 19 + - 3 + - 39 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 8 + - 3 + - 39 + - 1024 + - 4 + - 4 + - 2 + - 35 + - 0 + - 0 + - 10 + - 3 + - 39 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 17 + - 3 + - 39 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 8 + - 3 + - 39 + - 1024 + - 3 + - 12 + - 8 + - 39 + - 1024 + - 3 + - 0 + - 7 + - 33 + - 1 + - 1 + - 4 + - 7 + - 39 + - 0 + - 2 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 19 + - 39 + - 0 + - 0 + - 23 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 11 + - 56 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 7 + - 12 + - 56 + - 0 + - 0 + - 12 + - 1 + - 21 + - 0 + - 5 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 16 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 21 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 56 + - 0 + - 0 + - 9 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 32 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 56 + - 0 + - 0 + - 9 + - 9 + - 7 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 10 + - 5 + - 7 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 6 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 4 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 7 + - 34 + - 1 + - 1 + - 4 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 2 + - 4 + - 11 + - 53 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 3 + - 0 + - 49 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 9 + - 56 + - 0 + - 0 + - 13 + - 15 + - 7 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 65 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 9 + - 56 + - 0 + - 0 + - 13 + - 15 + - 7 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out new file mode 100644 index 00000000..7df28609 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[hover.robot].out @@ -0,0 +1,1483 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 18 + - 11 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 18 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 9 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 18 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 7 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 27 + - 22 + - 53 + - 0 + - 3 + - 0 + - 9 + - 24 + - 0 + - 0 + - 27 + - 22 + - 53 + - 0 + - 3 + - 0 + - 8 + - 24 + - 0 + - 0 + - 27 + - 36 + - 53 + - 0 + - 3 + - 0 + - 8 + - 24 + - 0 + - 0 + - 18 + - 41 + - 53 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 18 + - 41 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 15 + - 14 + - 53 + - 0 + - 0 + - 18 + - 9 + - 24 + - 0 + - 0 + - 13 + - 7 + - 53 + - 0 + - 3 + - 0 + - 7 + - 24 + - 0 + - 0 + - 15 + - 17 + - 53 + - 0 + - 0 + - 29 + - 9 + - 24 + - 0 + - 0 + - 13 + - 8 + - 53 + - 0 + - 3 + - 0 + - 7 + - 24 + - 0 + - 0 + - 15 + - 17 + - 53 + - 0 + - 0 + - 30 + - 9 + - 24 + - 0 + - 0 + - 13 + - 10 + - 53 + - 0 + - 4 + - 0 + - 17 + - 28 + - 0 + - 4 + - 18 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 28 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 3 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 3 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 11 + - 53 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 0 + - 3 + - 4 + - 3 + - 35 + - 0 + - 0 + - 29 + - 2 + - 46 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 35 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 26 + - 39 + - 0 + - 3 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 26 + - 39 + - 0 + - 4 + - 0 + - 6 + - 33 + - 1 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 5 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 17 + - 9 + - 53 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 1 + - 18 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 1 + - 18 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 0 + - 19 + - 5 + - 56 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 13 + - 6 + - 56 + - 0 + - 0 + - 6 + - 1 + - 21 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 14 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 43 + - 0 + - 0 + - 7 + - 3 + - 40 + - 1024 + - 0 + - 28 + - 19 + - 17 + - 0 + - 1 + - 4 + - 3 + - 43 + - 0 + - 0 + - 5 + - 4 + - 35 + - 0 + - 1 + - 4 + - 3 + - 43 + - 0 + - 0 + - 7 + - 15 + - 40 + - 0 + - 0 + - 21 + - 19 + - 17 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 0 + - 12 + - 3 + - 39 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 19 + - 3 + - 39 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 8 + - 3 + - 39 + - 1024 + - 4 + - 4 + - 2 + - 35 + - 0 + - 0 + - 10 + - 3 + - 39 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 17 + - 3 + - 39 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 8 + - 3 + - 39 + - 1024 + - 4 + - 0 + - 7 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 36 + - 0 + - 0 + - 1 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 4 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 3 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 5 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 0 + - 21 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 40 + - 0 + - 0 + - 1 + - 3 + - 40 + - 1024 + - 0 + - 13 + - 7 + - 35 + - 0 + - 0 + - 12 + - 3 + - 40 + - 1024 + - 0 + - 11 + - 4 + - 35 + - 0 + - 0 + - 6 + - 3 + - 40 + - 1024 + - 5 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 0 + - 27 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 40 + - 0 + - 0 + - 1 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 40 + - 1024 + - 4 + - 0 + - 8 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 1 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 12 + - 39 + - 0 + - 2 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 4 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 20 + - 39 + - 0 + - 2 + - 4 + - 20 + - 39 + - 0 + - 2 + - 4 + - 18 + - 39 + - 0 + - 2 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 20 + - 39 + - 0 + - 2 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 20 + - 39 + - 0 + - 2 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 18 + - 39 + - 0 + - 3 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 4 + - 39 + - 0 + - 3 + - 0 + - 8 + - 33 + - 1 + - 1 + - 4 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 16 + - 39 + - 0 + - 3 + - 4 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 21 + - 39 + - 0 + - 3 + - 4 + - 8 + - 53 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 3 + - 4 + - 10 + - 53 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 3 + - 4 + - 19 + - 53 + - 0 + - 0 + - 19 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 4 + - 0 + - 7 + - 33 + - 1 + - 1 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 19 + - 39 + - 0 + - 0 + - 23 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 11 + - 56 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 7 + - 12 + - 56 + - 0 + - 0 + - 12 + - 1 + - 21 + - 0 + - 5 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 9 + - 34 + - 1 + - 1 + - 4 + - 11 + - 39 + - 1024 + - 0 + - 15 + - 3 + - 40 + - 1024 + - 4 + - 4 + - 12 + - 39 + - 1024 + - 0 + - 16 + - 16 + - 40 + - 0 + - 0 + - 20 + - 20 + - 40 + - 0 + - 5 + - 4 + - 12 + - 39 + - 1024 + - 0 + - 16 + - 3 + - 40 + - 1024 + - 0 + - 9 + - 3 + - 35 + - 0 + - 0 + - 5 + - 16 + - 40 + - 0 + - 0 + - 18 + - 3 + - 35 + - 0 + - 0 + - 5 + - 20 + - 40 + - 0 + - 7 + - 0 + - 16 + - 34 + - 1 + - 2 + - 4 + - 14 + - 39 + - 1024 + - 2 + - 0 + - 13 + - 34 + - 1 + - 1 + - 4 + - 9 + - 39 + - 1024 + - 3 + - 0 + - 21 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 56 + - 0 + - 0 + - 9 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 25 + - 34 + - 1 + - 1 + - 4 + - 3 + - 35 + - 0 + - 1 + - 8 + - 4 + - 39 + - 1024 + - 1 + - 4 + - 6 + - 35 + - 0 + - 0 + - 8 + - 2 + - 24 + - 0 + - 1 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out new file mode 100644 index 00000000..5062f2ab --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[playground.robot].out @@ -0,0 +1,128 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 17 + - 28 + - 0 + - 5 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 8 + - 39 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 12 + - 2 + - 35 + - 0 + - 0 + - 11 + - 8 + - 39 + - 1024 + - 0 + - 17 + - 4 + - 35 + - 0 + - 0 + - 8 + - 8 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 4 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 8 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 0 + - 6 + - 4 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out new file mode 100644 index 00000000..95a866fa --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[references.robot].out @@ -0,0 +1,1608 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 11 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 25 + - 22 + - 53 + - 0 + - 3 + - 0 + - 9 + - 24 + - 0 + - 0 + - 25 + - 22 + - 53 + - 0 + - 3 + - 0 + - 8 + - 24 + - 0 + - 0 + - 25 + - 36 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 9 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 16 + - 8 + - 53 + - 0 + - 0 + - 12 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 15 + - 9 + - 24 + - 0 + - 0 + - 13 + - 7 + - 53 + - 0 + - 3 + - 0 + - 11 + - 25 + - 0 + - 0 + - 15 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 0 + - 10 + - 25 + - 0 + - 0 + - 14 + - 14 + - 39 + - 1024 + - 3 + - 0 + - 17 + - 28 + - 0 + - 9 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 53 + - 1024 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 14 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 36 + - 0 + - 1 + - 4 + - 5 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 17 + - 9 + - 53 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 1 + - 18 + - 7 + - 53 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 2 + - 4 + - 15 + - 39 + - 1024 + - 4 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 13 + - 39 + - 0 + - 0 + - 13 + - 16 + - 36 + - 2048 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 13 + - 39 + - 0 + - 0 + - 13 + - 19 + - 36 + - 2048 + - 2 + - 4 + - 12 + - 39 + - 0 + - 1 + - 4 + - 13 + - 39 + - 0 + - 0 + - 13 + - 17 + - 36 + - 2048 + - 3 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 1 + - 36 + - 2048 + - 0 + - 2 + - 9 + - 39 + - 0 + - 0 + - 9 + - 6 + - 36 + - 2048 + - 3 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 5 + - 36 + - 2048 + - 0 + - 6 + - 9 + - 39 + - 0 + - 0 + - 9 + - 6 + - 36 + - 2048 + - 2 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 14 + - 36 + - 2048 + - 0 + - 15 + - 3 + - 39 + - 0 + - 0 + - 3 + - 6 + - 36 + - 2048 + - 3 + - 4 + - 7 + - 39 + - 0 + - 0 + - 18 + - 13 + - 39 + - 0 + - 3 + - 4 + - 7 + - 39 + - 0 + - 0 + - 15 + - 13 + - 39 + - 0 + - 3 + - 4 + - 21 + - 39 + - 0 + - 2 + - 4 + - 21 + - 39 + - 0 + - 0 + - 25 + - 19 + - 17 + - 0 + - 2 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 18 + - 36 + - 2048 + - 0 + - 19 + - 3 + - 39 + - 0 + - 0 + - 3 + - 6 + - 36 + - 2048 + - 3 + - 4 + - 4 + - 39 + - 0 + - 0 + - 4 + - 18 + - 36 + - 2048 + - 0 + - 19 + - 3 + - 39 + - 0 + - 0 + - 3 + - 6 + - 36 + - 2048 + - 4 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 4 + - 39 + - 0 + - 0 + - 6 + - 2 + - 56 + - 0 + - 0 + - 2 + - 1 + - 21 + - 0 + - 2 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 39 + - 0 + - 0 + - 6 + - 2 + - 56 + - 0 + - 0 + - 2 + - 1 + - 21 + - 0 + - 0 + - 12 + - 15 + - 56 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 0 + - 18 + - 1 + - 17 + - 0 + - 0 + - 3 + - 4 + - 17 + - 0 + - 5 + - 0 + - 7 + - 33 + - 1 + - 1 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 19 + - 39 + - 0 + - 0 + - 23 + - 1 + - 56 + - 0 + - 0 + - 1 + - 1 + - 21 + - 0 + - 0 + - 6 + - 11 + - 56 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 0 + - 7 + - 12 + - 56 + - 0 + - 0 + - 12 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 0 + - 7 + - 7 + - 56 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 13 + - 34 + - 1 + - 1 + - 4 + - 12 + - 39 + - 0 + - 2 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 4 + - 34 + - 1 + - 0 + - 20 + - 10 + - 34 + - 1 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 4 + - 0 + - 4 + - 34 + - 1 + - 0 + - 21 + - 4 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 4 + - 34 + - 1 + - 0 + - 21 + - 4 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 4 + - 34 + - 1 + - 0 + - 22 + - 4 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 7 + - 34 + - 1 + - 0 + - 17 + - 14 + - 34 + - 1 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 21 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 5 + - 56 + - 0 + - 0 + - 9 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 4 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 49 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 65 + - 34 + - 1 + - 1 + - 10 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 7 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 17 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 3 + - 39 + - 1024 + - 3 + - 0 + - 27 + - 34 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 2 + - 4 + - 5 + - 35 + - 0 + - 0 + - 17 + - 5 + - 38 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 1 + - 2 + - 35 + - 0 + - 1 + - 8 + - 14 + - 39 + - 1024 + - 2 + - 8 + - 3 + - 57 + - 0 + - 3 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 33 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 1 + - 4 + - 3 + - 43 + - 0 + - 1 + - 4 + - 3 + - 43 + - 0 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 6 + - 56 + - 0 + - 2 + - 4 + - 3 + - 57 + - 0 + - 3 + - 4 + - 3 + - 57 + - 0 + - 2 + - 4 + - 6 + - 35 + - 0 + - 3 + - 0 + - 57 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 10 + - 56 + - 0 + - 2 + - 4 + - 5 + - 35 + - 0 + - 0 + - 20 + - 5 + - 38 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 1 + - 10 + - 35 + - 0 + - 2 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 31 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 6 + - 56 + - 0 + - 1 + - 4 + - 2 + - 35 + - 0 + - 1 + - 8 + - 3 + - 57 + - 0 + - 2 + - 4 + - 4 + - 35 + - 0 + - 1 + - 8 + - 3 + - 57 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + - 1 + - 4 + - 6 + - 35 + - 0 + - 3 + - 0 + - 44 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 56 + - 0 + - 0 + - 12 + - 10 + - 56 + - 0 + - 2 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 5 + - 35 + - 0 + - 0 + - 24 + - 5 + - 38 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 1 + - 10 + - 35 + - 0 + - 4 + - 8 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 23 + - 34 + - 1 + - 1 + - 21 + - 12 + - 39 + - 1024 + - 1 + - 22 + - 12 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 35 + - 0 + - 1 + - 8 + - 12 + - 39 + - 0 + - 1 + - 4 + - 6 + - 35 + - 0 + - 0 + - 41 + - 4 + - 38 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 35 + - 0 + - 2 + - 8 + - 13 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + - 1 + - 8 + - 12 + - 39 + - 0 + - 1 + - 4 + - 6 + - 35 + - 0 + - 0 + - 28 + - 4 + - 38 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 13 + - 35 + - 0 + - 2 + - 8 + - 15 + - 39 + - 0 + - 1 + - 4 + - 6 + - 35 + - 0 + - 0 + - 36 + - 4 + - 38 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 6 + - 35 + - 0 + - 1 + - 8 + - 15 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out new file mode 100644 index 00000000..91f1a4bc --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[remotetest.robot].out @@ -0,0 +1,23 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 4 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 30 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out new file mode 100644 index 00000000..6afe4658 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[reserved.robot].out @@ -0,0 +1,73 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 14 + - 39 + - 0 + - 1 + - 4 + - 5 + - 39 + - 0 + - 1 + - 4 + - 6 + - 39 + - 0 + - 1 + - 4 + - 8 + - 39 + - 0 + - 1 + - 4 + - 4 + - 39 + - 0 + - 1 + - 4 + - 4 + - 39 + - 0 + - 1 + - 4 + - 3 + - 39 + - 0 + - 0 + - 7 + - 19 + - 17 + - 0 + - 1 + - 4 + - 7 + - 39 + - 0 + - 1 + - 4 + - 3 + - 39 + - 0 + - 1 + - 4 + - 2 + - 39 + - 0 + - 0 + - 6 + - 19 + - 17 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out new file mode 100644 index 00000000..3dafc108 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[sematic_tokenizing.robot].out @@ -0,0 +1,308 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 8 + - 24 + - 0 + - 0 + - 12 + - 22 + - 53 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 40 + - 33 + - 1 + - 1 + - 4 + - 5 + - 35 + - 0 + - 0 + - 17 + - 5 + - 38 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 1 + - 1 + - 35 + - 0 + - 0 + - 5 + - 8 + - 38 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 35 + - 0 + - 1 + - 8 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 1 + - 4 + - 12 + - 39 + - 0 + - 2 + - 0 + - 24 + - 33 + - 1 + - 1 + - 4 + - 5 + - 35 + - 0 + - 0 + - 17 + - 5 + - 38 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 35 + - 0 + - 0 + - 8 + - 16 + - 38 + - 0 + - 0 + - 16 + - 1 + - 21 + - 0 + - 0 + - 1 + - 31 + - 35 + - 0 + - 1 + - 8 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 14 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 39 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 22 + - 1 + - 36 + - 0 + - 2 + - 0 + - 27 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 0 + - 0 + - 3 + - 4 + - 36 + - 2048 + - 0 + - 5 + - 5 + - 39 + - 0 + - 0 + - 5 + - 5 + - 36 + - 2048 + - 1 + - 4 + - 13 + - 53 + - 0 + - 0 + - 13 + - 1 + - 21 + - 0 + - 0 + - 1 + - 3 + - 39 + - 0 + - 0 + - 3 + - 4 + - 36 + - 2048 + - 0 + - 5 + - 5 + - 39 + - 0 + - 0 + - 5 + - 5 + - 36 + - 2048 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 56 + - 0 + - 1 + - 4 + - 2 + - 39 + - 0 + - 3 + - 0 + - 8 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 2 + - 4 + - 2 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out new file mode 100644 index 00000000..31158407 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[setup_teardown.robot].out @@ -0,0 +1,263 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 11 + - 25 + - 0 + - 0 + - 20 + - 13 + - 39 + - 0 + - 0 + - 13 + - 11 + - 36 + - 2048 + - 1 + - 0 + - 14 + - 25 + - 0 + - 0 + - 20 + - 13 + - 39 + - 0 + - 0 + - 13 + - 14 + - 36 + - 2048 + - 1 + - 0 + - 10 + - 25 + - 0 + - 0 + - 20 + - 13 + - 39 + - 0 + - 0 + - 13 + - 10 + - 36 + - 2048 + - 2 + - 0 + - 13 + - 25 + - 0 + - 0 + - 20 + - 5 + - 39 + - 0 + - 2 + - 0 + - 12 + - 25 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 13 + - 39 + - 0 + - 0 + - 13 + - 16 + - 36 + - 2048 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 13 + - 39 + - 0 + - 0 + - 13 + - 19 + - 36 + - 2048 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 5 + - 25 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 39 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - -9 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 3 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 13 + - 34 + - 1 + - 1 + - 4 + - 12 + - 39 + - 0 + - 2 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 5 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out new file mode 100644 index 00000000..e7478c3f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[signature_help.robot].out @@ -0,0 +1,153 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 7 + - 24 + - 0 + - 0 + - 11 + - 11 + - 53 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 12 + - 10 + - 53 + - 0 + - 0 + - 21 + - 1 + - 17 + - 0 + - 3 + - 0 + - 11 + - 25 + - 0 + - 0 + - 15 + - 12 + - 39 + - 0 + - 4 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 26 + - 39 + - 0 + - 0 + - 73 + - 1 + - 17 + - 0 + - 5 + - 4 + - 12 + - 39 + - 0 + - 0 + - 20 + - 1 + - 17 + - 0 + - 2 + - 20 + - 12 + - 39 + - 0 + - 0 + - 38 + - 1 + - 17 + - 0 + - 5 + - 4 + - 22 + - 39 + - 0 + - 0 + - 44 + - 1 + - 17 + - 0 + - 6 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 26 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 10 + - 56 + - 0 + - 0 + - 14 + - 8 + - 7 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 9 + - 7 + - 7 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 1 + - 4 + - 12 + - 39 + - 1024 + - 0 + - 17 + - 1 + - 17 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out new file mode 100644 index 00000000..f3482154 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[symbols.robot].out @@ -0,0 +1,218 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 2 + - 0 + - 7 + - 24 + - 0 + - 0 + - 11 + - 11 + - 53 + - 0 + - 2 + - 0 + - 17 + - 28 + - 0 + - 5 + - 0 + - 18 + - 29 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 2 + - 20 + - 8 + - 39 + - 1024 + - 3 + - 37 + - 8 + - 39 + - 1024 + - 3 + - 4 + - 3 + - 57 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + - 0 + - 18 + - 2 + - 46 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + - 1 + - 8 + - 4 + - 39 + - 1024 + - 1 + - 4 + - 6 + - 35 + - 0 + - 0 + - 19 + - 2 + - 24 + - 0 + - 2 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 1 + - 4 + - 15 + - 39 + - 0 + - 2 + - 0 + - 16 + - 31 + - 0 + - 3 + - 0 + - 16 + - 32 + - 0 + - 2 + - 0 + - 10 + - 34 + - 1 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 8 + - 56 + - 0 + - 0 + - 12 + - 9 + - 56 + - 0 + - 3 + - 0 + - 16 + - 32 + - 0 + - 2 + - 0 + - 15 + - 34 + - 1 + - 2 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 1 + - 4 + - 12 + - 39 + - 1024 + - 2 + - 0 + - 18 + - 29 + - 0 + - 3 + - 4 + - 11 + - 39 + - 0 + - 2 + - 0 + - 16 + - 32 + - 0 + - 4 + - 4 + - 11 + - 39 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 20 + - 33 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 2 + - 4 + - 3 + - 57 + - 0 + - 2 + - 15 + - 8 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out new file mode 100644 index 00000000..0fce9068 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates.robot].out @@ -0,0 +1,768 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 13 + - 25 + - 0 + - 0 + - 20 + - 22 + - 39 + - 0 + - 2 + - 0 + - 13 + - 54 + - 0 + - 2 + - 0 + - 17 + - 28 + - 0 + - 4 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 16 + - 39 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 17 + - 1 + - 36 + - 0 + - 2 + - 4 + - 1 + - 36 + - 0 + - 0 + - 23 + - 1 + - 36 + - 0 + - 1 + - 19 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 17 + - 1 + - 36 + - 0 + - 1 + - 4 + - 3 + - 36 + - 0 + - 0 + - 25 + - 1 + - 36 + - 0 + - 2 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 3 + - 36 + - 0 + - 0 + - 7 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 36 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 9 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 12 + - 39 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 2 + - 0 + - 23 + - 33 + - 1 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 2 + - 0 + - 24 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 2 + - 0 + - 24 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 2 + - 0 + - 24 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 11 + - 39 + - 0 + - 0 + - 11 + - 1 + - 36 + - 2048 + - 0 + - 2 + - 5 + - 39 + - 0 + - 0 + - 5 + - 1 + - 36 + - 2048 + - 0 + - 2 + - 3 + - 39 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 2 + - 0 + - 35 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 41 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 22 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 16 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 12 + - 39 + - 1024 + - 0 + - 16 + - 3 + - 40 + - 1024 + - 0 + - 28 + - 3 + - 35 + - 0 + - 0 + - 7 + - 3 + - 40 + - 1024 + - 2 + - 0 + - 19 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 6 + - 56 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + - 0 + - 15 + - 8 + - 46 + - 0 + - 1 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 11 + - 34 + - 1 + - 0 + - 15 + - 6 + - 34 + - 1 + - 0 + - 17 + - 4 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 0 + - 8 + - 11 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out new file mode 100644 index 00000000..decfe09c --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[templates2.robot].out @@ -0,0 +1,373 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 13 + - 25 + - 0 + - 0 + - 17 + - 42 + - 39 + - 0 + - 2 + - 0 + - 17 + - 28 + - 0 + - 5 + - 0 + - 18 + - 29 + - 0 + - 0 + - 34 + - 8 + - 29 + - 0 + - 0 + - 17 + - 8 + - 29 + - 0 + - 1 + - 0 + - 17 + - 33 + - 1 + - 0 + - 34 + - 7 + - 36 + - 0 + - 1 + - 0 + - 16 + - 33 + - 1 + - 0 + - 51 + - 7 + - 36 + - 0 + - 1 + - 0 + - 30 + - 33 + - 1 + - 0 + - 34 + - 7 + - 36 + - 0 + - 0 + - 17 + - 7 + - 36 + - 0 + - 1 + - 0 + - 15 + - 33 + - 1 + - 1 + - 0 + - 14 + - 33 + - 1 + - 1 + - 0 + - 28 + - 33 + - 1 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 22 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 15 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 0 + - 18 + - 2 + - 46 + - 0 + - 1 + - 19 + - 7 + - 36 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 0 + - 19 + - 8 + - 46 + - 0 + - 1 + - 8 + - 7 + - 36 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 24 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 15 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 0 + - 18 + - 2 + - 46 + - 0 + - 1 + - 8 + - 2 + - 35 + - 0 + - 1 + - 23 + - 7 + - 36 + - 0 + - 1 + - 8 + - 4 + - 35 + - 0 + - 1 + - 23 + - 7 + - 36 + - 0 + - 1 + - 8 + - 3 + - 35 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 32 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 15 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 0 + - 18 + - 2 + - 46 + - 0 + - 1 + - 8 + - 2 + - 35 + - 0 + - 1 + - 23 + - 7 + - 36 + - 0 + - 1 + - 23 + - 7 + - 36 + - 0 + - 0 + - 11 + - 1 + - 36 + - 0 + - 1 + - 8 + - 4 + - 35 + - 0 + - 1 + - 23 + - 7 + - 36 + - 0 + - 1 + - 8 + - 3 + - 35 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 42 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 11 + - 56 + - 0 + - 0 + - 15 + - 11 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 15 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 4 + - 56 + - 0 + - 0 + - 8 + - 4 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out new file mode 100644 index 00000000..cc6617a6 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[variables.robot].out @@ -0,0 +1,1123 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 14 + - 25 + - 0 + - 0 + - 20 + - 12 + - 39 + - 1024 + - 0 + - 16 + - 3 + - 40 + - 1024 + - 0 + - 26 + - 3 + - 35 + - 0 + - 0 + - 7 + - 3 + - 40 + - 1024 + - 0 + - 39 + - 3 + - 35 + - 0 + - 0 + - 7 + - 13 + - 40 + - 1024 + - 1 + - 0 + - 10 + - 25 + - 0 + - 0 + - 14 + - 3 + - 39 + - 1024 + - 1 + - 0 + - 9 + - 24 + - 0 + - 0 + - 13 + - 14 + - 53 + - 0 + - 1 + - 0 + - 9 + - 24 + - 0 + - 0 + - 13 + - 12 + - 53 + - 0 + - 1 + - 0 + - 9 + - 24 + - 0 + - 0 + - 13 + - 11 + - 53 + - 0 + - 2 + - 0 + - 17 + - 28 + - 0 + - 9 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 12 + - 39 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 3 + - 35 + - 0 + - 0 + - 11 + - 2 + - 46 + - 0 + - 1 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 19 + - 39 + - 0 + - 3 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 14 + - 12 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 23 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 0 + - 35 + - 20 + - 17 + - 0 + - 2 + - 17 + - 12 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 6 + - 33 + - 1 + - 1 + - 12 + - 8 + - 39 + - 1024 + - 1 + - 12 + - 8 + - 39 + - 1024 + - 1 + - 12 + - 12 + - 39 + - 1024 + - 1 + - 12 + - 12 + - 39 + - 1024 + - 1 + - 12 + - 12 + - 39 + - 1024 + - 1 + - 12 + - 12 + - 39 + - 1024 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 12 + - 8 + - 39 + - 1024 + - 1 + - 12 + - 8 + - 39 + - 1024 + - 2 + - 4 + - 2 + - 35 + - 0 + - 1 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 35 + - 0 + - 1 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 5 + - 35 + - 0 + - 1 + - 8 + - 5 + - 35 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 2 + - 35 + - 0 + - 0 + - 16 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 5 + - 33 + - 1 + - 1 + - 12 + - 8 + - 39 + - 1024 + - 1 + - 12 + - 8 + - 39 + - 1024 + - 2 + - 12 + - 8 + - 39 + - 1024 + - 1 + - 4 + - 14 + - 39 + - 1024 + - 1 + - 4 + - 14 + - 39 + - 1024 + - 1 + - 4 + - 7 + - 39 + - 1024 + - 1 + - 4 + - 20 + - 39 + - 1024 + - 1 + - 4 + - 16 + - 39 + - 1024 + - 1 + - 4 + - 22 + - 39 + - 1024 + - 1 + - 4 + - 25 + - 39 + - 1024 + - 0 + - 36 + - 3 + - 40 + - 1024 + - 1 + - 4 + - 17 + - 39 + - 1024 + - 1 + - 4 + - 14 + - 39 + - 1024 + - 0 + - 27 + - 3 + - 40 + - 1024 + - 1 + - 4 + - 18 + - 39 + - 1024 + - 0 + - 29 + - 3 + - 40 + - 1024 + - 1 + - 4 + - 14 + - 39 + - 1024 + - 0 + - 27 + - 8 + - 40 + - 1024 + - 2 + - 0 + - 7 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 1 + - 4 + - 3 + - 43 + - 0 + - 1 + - 4 + - 3 + - 43 + - 0 + - 2 + - 4 + - 9 + - 39 + - 0 + - 2 + - 0 + - 17 + - 28 + - 0 + - 4 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 2 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 9 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 3 + - 12 + - 39 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 2 + - 0 + - 23 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 2 + - 0 + - 23 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 1 + - 14 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 1 + - 4 + - 3 + - 36 + - 0 + - 0 + - 5 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 2 + - 0 + - 35 + - 33 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 3 + - 41 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 1 + - 4 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 0 + - 3 + - 1 + - 36 + - 0 + - 2 + - 0 + - 15 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 0 + - 62 + - 6 + - 17 + - 0 + - 2 + - 0 + - 15 + - 33 + - 1 + - 1 + - 4 + - 19 + - 39 + - 0 + - 0 + - 23 + - 3 + - 56 + - 0 + - 0 + - 3 + - 1 + - 21 + - 0 + - 3 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 8 + - 25 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 0 + - 5 + - 12 + - 39 + - 1024 + - 0 + - 16 + - 3 + - 40 + - 1024 + - 0 + - 28 + - 3 + - 35 + - 0 + - 0 + - 7 + - 3 + - 40 + - 1024 + - 2 + - 0 + - 19 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 6 + - 56 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + - 0 + - 11 + - 8 + - 46 + - 0 + - 1 + - 8 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 0 + - 11 + - 34 + - 1 + - 0 + - 24 + - 6 + - 34 + - 1 + - 0 + - 10 + - 4 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 12 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 3 + - 4 + - 56 + - 0 + - 0 + - 6 + - 4 + - 56 + - 0 + - 0 + - 6 + - 11 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 31 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 56 + - 0 + - 0 + - 11 + - 3 + - 56 + - 0 + - 0 + - 7 + - 10 + - 7 + - 0 + - 0 + - 10 + - 1 + - 21 + - 0 + - 0 + - 14 + - 8 + - 56 + - 0 + - 0 + - 12 + - 11 + - 56 + - 0 + - 0 + - 15 + - 11 + - 7 + - 0 + - 0 + - 11 + - 1 + - 21 + - 0 + - 1 + - 4 + - 12 + - 39 + - 1024 + - 2 + - 0 + - 5 + - 34 + - 1 + - 1 + - 4 + - 31 + - 39 + - 0 + - 0 + - 37 + - 5 + - 56 + - 0 + - 0 + - 5 + - 1 + - 21 + - 0 + - 0 + - 4 + - 8 + - 56 + - 0 + - 0 + - 8 + - 1 + - 21 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out new file mode 100644 index 00000000..df8fc727 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-__init__.robot].out @@ -0,0 +1,8 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out new file mode 100644 index 00000000..8461ce14 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-embedded_keywords.robot].out @@ -0,0 +1,118 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 6 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 0 + - 0 + - 3 + - 9 + - 36 + - 2048 + - 0 + - 10 + - 5 + - 39 + - 0 + - 0 + - 5 + - 5 + - 36 + - 2048 + - 1 + - 4 + - 3 + - 39 + - 0 + - 0 + - 3 + - 9 + - 36 + - 2048 + - 0 + - 10 + - 5 + - 39 + - 0 + - 0 + - 5 + - 5 + - 36 + - 2048 + - 0 + - 6 + - 13 + - 39 + - 0 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 3 + - 34 + - 1 + - 0 + - 15 + - 6 + - 34 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 3 + - 34 + - 1 + - 0 + - 15 + - 6 + - 34 + - 1 + - 0 + - 14 + - 14 + - 34 + - 1 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 7 + - 56 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out new file mode 100644 index 00000000..3b0d75a7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-indexed_variables.robot].out @@ -0,0 +1,33 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 17 + - 28 + - 0 + - 5 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 20 + - 8 + - 39 + - 1024 + - 1 + - 27 + - 8 + - 39 + - 1024 + - 1 + - 4 + - 6 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out new file mode 100644 index 00000000..827c4b67 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-jsonvariables.robot].out @@ -0,0 +1,38 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 9 + - 24 + - 0 + - 0 + - 13 + - 11 + - 53 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out new file mode 100644 index 00000000..26fe2075 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sometasks.robot].out @@ -0,0 +1,28 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 13 + - 30 + - 0 + - 1 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 12 + - 39 + - 1024 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 12 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out new file mode 100644 index 00000000..b41aa975 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-__init__.robot].out @@ -0,0 +1,13 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 4 + - 25 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out new file mode 100644 index 00000000..8ef46bca --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-sub_suite-first.robot].out @@ -0,0 +1,23 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 12 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out new file mode 100644 index 00000000..89c5d5f7 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf61-suite_with_name.robot].out @@ -0,0 +1,28 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 4 + - 25 + - 0 + - 2 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 12 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out new file mode 100644 index 00000000..e55ae5ef --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf70-vartest.robot].out @@ -0,0 +1,333 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 15 + - 39 + - 1024 + - 2 + - 0 + - 14 + - 33 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 0 + - 20 + - 12 + - 35 + - 0 + - 1 + - 4 + - 3 + - 57 + - 0 + - 0 + - 20 + - 11 + - 35 + - 0 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 15 + - 39 + - 1024 + - 3 + - 0 + - 22 + - 33 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 0 + - 20 + - 6 + - 35 + - 0 + - 1 + - 4 + - 3 + - 57 + - 0 + - 0 + - 20 + - 13 + - 35 + - 0 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 15 + - 39 + - 1024 + - 2 + - 0 + - 8 + - 33 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 8 + - 39 + - 1024 + - 2 + - 0 + - 8 + - 33 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 0 + - 30 + - 11 + - 35 + - 0 + - 1 + - 4 + - 8 + - 39 + - 1024 + - 2 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 49 + - 34 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 9 + - 56 + - 0 + - 0 + - 13 + - 15 + - 7 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + - 2 + - 0 + - 65 + - 34 + - 1 + - 1 + - 4 + - 3 + - 57 + - 0 + - 1 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 9 + - 25 + - 0 + - 0 + - 9 + - 1 + - 21 + - 0 + - 0 + - 5 + - 9 + - 56 + - 0 + - 0 + - 13 + - 15 + - 7 + - 0 + - 0 + - 15 + - 1 + - 21 + - 0 + - 1 + - 4 + - 1 + - 21 + - 256 + - 0 + - 1 + - 13 + - 25 + - 256 + - 0 + - 13 + - 1 + - 21 + - 256 + - 3 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 7 + - 25 + - 0 + - 0 + - 7 + - 1 + - 21 + - 0 + - 2 + - 4 + - 1 + - 21 + - 0 + - 0 + - 1 + - 4 + - 25 + - 0 + - 0 + - 4 + - 1 + - 21 + - 0 + - 3 + - 4 + - 3 + - 39 + - 1024 + - 1 + - 4 + - 3 + - 39 + - 1024 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out new file mode 100644 index 00000000..245529ee --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[versions-rf72-grouptest.robot].out @@ -0,0 +1,58 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 5 + - 33 + - 1 + - 1 + - 4 + - 5 + - 35 + - 0 + - 1 + - 8 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 35 + - 0 + - 2 + - 4 + - 5 + - 35 + - 0 + - 1 + - 8 + - 6 + - 39 + - 0 + - 1 + - 8 + - 5 + - 35 + - 0 + - 1 + - 12 + - 6 + - 39 + - 0 + - 2 + - 8 + - 3 + - 35 + - 0 + - 2 + - 4 + - 3 + - 35 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out new file mode 100644 index 00000000..d4bc0b14 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_semantic_tokens.test[very_big_file.robot].out @@ -0,0 +1,92348 @@ +result: !SemanticTokens + data: + - 0 + - 0 + - 16 + - 27 + - 0 + - 1 + - 0 + - 13 + - 25 + - 256 + - 3 + - 0 + - 17 + - 28 + - 0 + - 7 + - 0 + - 18 + - 29 + - 0 + - 1 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 11 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 2 + - 0 + - 10 + - 33 + - 1 + - 1 + - 4 + - 5 + - 41 + - 0 + - 0 + - 5 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 50 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 31 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 40 + - 39 + - 0 + - 0 + - 40 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 5 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 62 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 12 + - 39 + - 0 + - 0 + - 12 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 32 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 50 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 28 + - 39 + - 0 + - 0 + - 28 + - 13 + - 36 + - 2048 + - 0 + - 14 + - 19 + - 39 + - 0 + - 1 + - 4 + - 4 + - 41 + - 0 + - 0 + - 4 + - 1 + - 39 + - 0 + - 0 + - 1 + - 30 + - 39 + - 0 + - 0 + - 30 + - 10 + - 36 + - 2048 + - 0 + - 11 + - 12 + - 39 + - 0 + - 1 + - 4 + - 3 + - 41 + - 0 + - 0 + - 3 + - 1 + - 39 + - 0 + - 0 + - 1 + - 17 + - 39 + - 0 + - 0 + - 17 + - 12 + - 36 + - 2048 + - 0 + - 13 + - 20 + - 39 + - 0 + - 0 + - 20 + - 6 + - 36 + - 2048 + - 0 + - 7 + - 12 + - 39 + - 0 + - 3 + - 0 + - 16 + - 32 + - 0 + - 1 + - 0 + - 17 + - 34 + - 1 + - 0 + - 24 + - 51 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 12 + - 34 + - 1 + - 0 + - 19 + - 32 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 40 + - 34 + - 1 + - 0 + - 47 + - 6 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 62 + - 34 + - 1 + - 0 + - 73 + - 1 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 12 + - 34 + - 1 + - 0 + - 19 + - 33 + - 34 + - 1 + - 0 + - 50 + - 1 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 50 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 28 + - 34 + - 1 + - 0 + - 35 + - 20 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 17 + - 34 + - 1 + - 0 + - 24 + - 21 + - 34 + - 1 + - 0 + - 30 + - 13 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + - 2 + - 0 + - 30 + - 34 + - 1 + - 0 + - 37 + - 13 + - 34 + - 1 + - 2 + - 4 + - 2 + - 39 + - 0 + result_id: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out new file mode 100644 index 00000000..6ef1e4a2 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-026-library_signature].out @@ -0,0 +1,21 @@ +data: !GeneratedTestData + character: 26 + line: 3 + name: library signature +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(l: List[int] | None = ${None}, s: str = Hello World!, i: int = ${0}, + b: bool = ${False})' + parameters: + - documentation: null + label: 'l: List[int] | None = ${None}' + - documentation: null + label: 's: str = Hello World!' + - documentation: null + label: 'i: int = ${0}' + - documentation: null + label: 'b: bool = ${False}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out new file mode 100644 index 00000000..08216847 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-028-library_signature].out @@ -0,0 +1,21 @@ +data: !GeneratedTestData + character: 28 + line: 3 + name: library signature +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(l: List[int] | None = ${None}, s: str = Hello World!, i: int = ${0}, + b: bool = ${False})' + parameters: + - documentation: null + label: 'l: List[int] | None = ${None}' + - documentation: null + label: 's: str = Hello World!' + - documentation: null + label: 'i: int = ${0}' + - documentation: null + label: 'b: bool = ${False}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out new file mode 100644 index 00000000..180ba4b8 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-003-030-library_signature].out @@ -0,0 +1,21 @@ +data: !GeneratedTestData + character: 30 + line: 3 + name: library signature +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(l: List[int] | None = ${None}, s: str = Hello World!, i: int = ${0}, + b: bool = ${False})' + parameters: + - documentation: null + label: 'l: List[int] | None = ${None}' + - documentation: null + label: 's: str = Hello World!' + - documentation: null + label: 'i: int = ${0}' + - documentation: null + label: 'b: bool = ${False}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out new file mode 100644 index 00000000..667dd602 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-031-Suite_Setup_first_param].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 31 + line: 6 + name: Suite Setup first param +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(i: int, b: bool, l: List[int] | None = ${None})' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: List[int] | None = ${None}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out new file mode 100644 index 00000000..fe66d0ac --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-006-036-Suite_Setup_second_param].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 36 + line: 6 + name: Suite Setup second param +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: '(i: int, b: bool, l: List[int] | None = ${None})' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: List[int] | None = ${None}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out new file mode 100644 index 00000000..5d215af0 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-034-first_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 34 + line: 12 + name: first param resource +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out new file mode 100644 index 00000000..1ba47bed --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-036-first_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 36 + line: 12 + name: first param resource +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out new file mode 100644 index 00000000..b3842232 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-038-first_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 38 + line: 12 + name: first param resource +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out new file mode 100644 index 00000000..24d9d81f --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-044-second_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 44 + line: 12 + name: second param resource +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out new file mode 100644 index 00000000..f9299516 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-046-second_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 46 + line: 12 + name: second param resource +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out new file mode 100644 index 00000000..52a51451 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-047-second_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 47 + line: 12 + name: second param resource +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out new file mode 100644 index 00000000..455b0de1 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-052-second_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 52 + line: 12 + name: second param resource +result: !SignatureHelp + active_parameter: 2 + active_signature: 0 + signatures: + - active_parameter: 2 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out new file mode 100644 index 00000000..a3601933 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-054-second_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 54 + line: 12 + name: second param resource +result: !SignatureHelp + active_parameter: 2 + active_signature: 0 + signatures: + - active_parameter: 2 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out new file mode 100644 index 00000000..9e443ec4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-056-second_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 56 + line: 12 + name: second param resource +result: !SignatureHelp + active_parameter: 2 + active_signature: 0 + signatures: + - active_parameter: 2 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out new file mode 100644 index 00000000..903349ae --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-059-no_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 59 + line: 12 + name: no param resource +result: !SignatureHelp + active_parameter: -1 + active_signature: 0 + signatures: + - active_parameter: -1 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out new file mode 100644 index 00000000..a39ba9be --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-062-no_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 62 + line: 12 + name: no param resource +result: !SignatureHelp + active_parameter: -1 + active_signature: 0 + signatures: + - active_parameter: -1 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out new file mode 100644 index 00000000..606c6144 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-012-065-no_param_resource].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 65 + line: 12 + name: no param resource +result: !SignatureHelp + active_parameter: -1 + active_signature: 0 + signatures: + - active_parameter: -1 + documentation: null + label: (message, level = INFO, html = ${False}) + parameters: + - documentation: null + label: message + - documentation: null + label: level = INFO + - documentation: null + label: html = ${False} diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out new file mode 100644 index 00000000..992acacd --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-017-020-without_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 20 + line: 17 + name: without params +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(i: int, b: bool, l: List[int] | None = ${None})' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: List[int] | None = ${None}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out new file mode 100644 index 00000000..6d5a12a5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-036-with_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 36 + line: 19 + name: with params +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(i: int, b: bool, l: List[int] | None = ${None})' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: List[int] | None = ${None}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out new file mode 100644 index 00000000..fc3fe950 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-041-second_param].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 41 + line: 19 + name: second param +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: '(i: int, b: bool, l: List[int] | None = ${None})' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: List[int] | None = ${None}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out new file mode 100644 index 00000000..69e53e91 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-019-046-no_param].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 46 + line: 19 + name: no param +result: !SignatureHelp + active_parameter: 2 + active_signature: 0 + signatures: + - active_parameter: 2 + documentation: null + label: '(i: int, b: bool, l: List[int] | None = ${None})' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: List[int] | None = ${None}' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out new file mode 100644 index 00000000..ffebf4e4 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-030-int_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 30 + line: 24 + name: int params +result: !SignatureHelp + active_parameter: 0 + active_signature: 0 + signatures: + - active_parameter: 0 + documentation: null + label: '(i: int, b: bool, l: TestEnum = A)' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: TestEnum = A' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out new file mode 100644 index 00000000..1cd39184 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-035-bool_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 35 + line: 24 + name: bool params +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: '(i: int, b: bool, l: TestEnum = A)' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: TestEnum = A' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out new file mode 100644 index 00000000..f4536ff3 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-037-bool_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 37 + line: 24 + name: bool params +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: '(i: int, b: bool, l: TestEnum = A)' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: TestEnum = A' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out new file mode 100644 index 00000000..78a9b41a --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-038-bool_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 38 + line: 24 + name: bool params +result: !SignatureHelp + active_parameter: 1 + active_signature: 0 + signatures: + - active_parameter: 1 + documentation: null + label: '(i: int, b: bool, l: TestEnum = A)' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: TestEnum = A' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out new file mode 100644 index 00000000..333e4dd5 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-043-enum_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 43 + line: 24 + name: enum params +result: !SignatureHelp + active_parameter: 2 + active_signature: 0 + signatures: + - active_parameter: 2 + documentation: null + label: '(i: int, b: bool, l: TestEnum = A)' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: TestEnum = A' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out new file mode 100644 index 00000000..1e696027 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-024-046-no_params].out @@ -0,0 +1,18 @@ +data: !GeneratedTestData + character: 46 + line: 24 + name: no params +result: !SignatureHelp + active_parameter: -1 + active_signature: 0 + signatures: + - active_parameter: -1 + documentation: null + label: '(i: int, b: bool, l: TestEnum = A)' + parameters: + - documentation: null + label: 'i: int' + - documentation: null + label: 'b: bool' + - documentation: null + label: 'l: TestEnum = A' diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out new file mode 100644 index 00000000..42b59949 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_signature_help.test[signature_help.robot-033-018-BuiltIn_no_params].out @@ -0,0 +1,12 @@ +data: !GeneratedTestData + character: 18 + line: 33 + name: BuiltIn no params +result: !SignatureHelp + active_parameter: -1 + active_signature: 0 + signatures: + - active_parameter: -1 + documentation: null + label: () + parameters: [] diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out new file mode 100644 index 00000000..c43b56db --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[].out @@ -0,0 +1,14013 @@ +result: +- !WorkspaceSymbol + container_name: __not_discovered + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: __not_discovered.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: __not_discovered + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 4 + start: + character: 0 + line: 4 + uri: __not_discovered.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: _not_discovered + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: _not_discovered.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: _not_discovered + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 4 + start: + character: 0 + line: 4 + uri: _not_discovered.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 1 + start: + character: 14 + line: 1 + uri: bddstyle.robot + name: ${input} + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 9 + start: + character: 21 + line: 9 + uri: bddstyle.robot + name: ${input} + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 13 + location: + range: + end: + character: 50 + line: 3 + start: + character: 37 + line: 3 + uri: bddstyle.robot + name: ${multiplier} + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 13 + location: + range: + end: + character: 46 + line: 9 + start: + character: 33 + line: 9 + uri: bddstyle.robot + name: ${multiplier} + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 13 + location: + range: + end: + character: 40 + line: 5 + start: + character: 31 + line: 5 + uri: bddstyle.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 13 + location: + range: + end: + character: 59 + line: 9 + start: + character: 50 + line: 9 + uri: bddstyle.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 17 + start: + character: 0 + line: 17 + uri: bddstyle.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 18 + start: + character: 0 + line: 18 + uri: bddstyle.robot + name: Testcase 2 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 19 + start: + character: 0 + line: 19 + uri: bddstyle.robot + name: Testcase 3 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 20 + start: + character: 0 + line: 20 + uri: bddstyle.robot + name: Testcase 4 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 2 + line: 9 + start: + character: 0 + line: 9 + uri: bddstyle.robot + name: kw + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 34 + line: 1 + start: + character: 0 + line: 1 + uri: bddstyle.robot + name: value of var <${input}> is present + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 51 + line: 3 + start: + character: 0 + line: 3 + uri: bddstyle.robot + name: value of var input is multiplied by "${multiplier}" + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 41 + line: 5 + start: + character: 0 + line: 5 + uri: bddstyle.robot + name: value of var result should be [${result}] + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 119 + start: + character: 19 + line: 119 + uri: code_action_show_documentation.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 36 + line: 124 + start: + character: 28 + line: 124 + uri: code_action_show_documentation.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + uri: code_action_show_documentation.robot + name: ${LIB_ARG} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 22 + start: + character: 0 + line: 22 + uri: code_action_show_documentation.robot + name: ${a var} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 129 + start: + character: 19 + line: 129 + uri: code_action_show_documentation.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 24 + start: + character: 0 + line: 24 + uri: code_action_show_documentation.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 115 + start: + character: 7 + line: 115 + uri: code_action_show_documentation.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 129 + start: + character: 27 + line: 129 + uri: code_action_show_documentation.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 101 + start: + character: 4 + line: 101 + uri: code_action_show_documentation.robot + name: ${number} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 52 + start: + character: 4 + line: 52 + uri: code_action_show_documentation.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 38 + line: 101 + start: + character: 30 + line: 101 + uri: code_action_show_documentation.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 33 + line: 105 + start: + character: 25 + line: 105 + uri: code_action_show_documentation.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 33 + line: 109 + start: + character: 25 + line: 109 + uri: code_action_show_documentation.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 34 + line: 112 + start: + character: 26 + line: 112 + uri: code_action_show_documentation.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 124 + start: + character: 19 + line: 124 + uri: code_action_show_documentation.robot + name: ${tt} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 91 + start: + character: 13 + line: 91 + uri: code_action_show_documentation.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 97 + start: + character: 19 + line: 97 + uri: code_action_show_documentation.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 21 + line: 105 + start: + character: 4 + line: 105 + uri: code_action_show_documentation.robot + name: ${what} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 21 + line: 109 + start: + character: 4 + line: 109 + uri: code_action_show_documentation.robot + name: ${what} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 112 + start: + character: 4 + line: 112 + uri: code_action_show_documentation.robot + name: ${what} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 118 + start: + character: 0 + line: 118 + uri: code_action_show_documentation.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 38 + line: 101 + start: + character: 0 + line: 101 + uri: code_action_show_documentation.robot + name: add ${number:[0-9]+} coins to ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 34 + line: 112 + start: + character: 0 + line: 112 + uri: code_action_show_documentation.robot + name: add ${what:[a-zA-Z ]+} to ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 33 + line: 105 + start: + character: 0 + line: 105 + uri: code_action_show_documentation.robot + name: add ${what:[a-zA-Z]+} to ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 33 + line: 109 + start: + character: 0 + line: 109 + uri: code_action_show_documentation.robot + name: add ${what:[a-zA-Z]+} to ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 128 + start: + character: 0 + line: 128 + uri: code_action_show_documentation.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 123 + start: + character: 0 + line: 123 + uri: code_action_show_documentation.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 115 + start: + character: 0 + line: 115 + uri: code_action_show_documentation.robot + name: do add ${bananas} and to my bag + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 95 + start: + character: 0 + line: 95 + uri: code_action_show_documentation.robot + name: do something + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 91 + start: + character: 0 + line: 91 + uri: code_action_show_documentation.robot + name: do something ${type} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 60 + start: + character: 0 + line: 60 + uri: code_action_show_documentation.robot + name: fifth + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 27 + start: + character: 0 + line: 27 + uri: code_action_show_documentation.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 51 + start: + character: 0 + line: 51 + uri: code_action_show_documentation.robot + name: forth + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 39 + start: + character: 0 + line: 39 + uri: code_action_show_documentation.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 85 + start: + character: 0 + line: 85 + uri: code_action_show_documentation.robot + name: sixth + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 45 + start: + character: 0 + line: 45 + uri: code_action_show_documentation.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: discovered__ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: discovered__.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: discovered__ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 5 + start: + character: 0 + line: 5 + uri: discovered__.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 113 + start: + character: 19 + line: 113 + uri: document_highlight.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 36 + line: 122 + start: + character: 28 + line: 122 + uri: document_highlight.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 24 + start: + character: 0 + line: 24 + uri: document_highlight.robot + name: ${A} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 25 + start: + character: 0 + line: 25 + uri: document_highlight.robot + name: ${B} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 22 + start: + character: 0 + line: 22 + uri: document_highlight.robot + name: ${LIB_ARG} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 20 + start: + character: 0 + line: 20 + uri: document_highlight.robot + name: ${a var} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 164 + start: + character: 32 + line: 164 + uri: document_highlight.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 169 + start: + character: 32 + line: 169 + uri: document_highlight.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 164 + start: + character: 19 + line: 164 + uri: document_highlight.robot + name: ${an_arg} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 169 + start: + character: 19 + line: 169 + uri: document_highlight.robot + name: ${an_arg} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 132 + start: + character: 19 + line: 132 + uri: document_highlight.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 132 + start: + character: 27 + line: 132 + uri: document_highlight.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 44 + line: 132 + start: + character: 40 + line: 132 + uri: document_highlight.robot + name: ${c} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 149 + start: + character: 4 + line: 149 + uri: document_highlight.robot + name: ${number} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 57 + start: + character: 4 + line: 57 + uri: document_highlight.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 38 + line: 149 + start: + character: 30 + line: 149 + uri: document_highlight.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 122 + start: + character: 19 + line: 122 + uri: document_highlight.robot + name: ${tt} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 112 + start: + character: 0 + line: 112 + uri: document_highlight.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 155 + start: + character: 0 + line: 155 + uri: document_highlight.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 168 + start: + character: 0 + line: 168 + uri: document_highlight.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 38 + line: 149 + start: + character: 0 + line: 149 + uri: document_highlight.robot + name: add ${number:[0-9]+} coins to ${thing} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 131 + start: + character: 0 + line: 131 + uri: document_highlight.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 121 + start: + character: 0 + line: 121 + uri: document_highlight.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 66 + start: + character: 0 + line: 66 + uri: document_highlight.robot + name: fifth + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 29 + start: + character: 0 + line: 29 + uri: document_highlight.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 56 + start: + character: 0 + line: 56 + uri: document_highlight.robot + name: forth + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 44 + start: + character: 0 + line: 44 + uri: document_highlight.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 7 + line: 85 + start: + character: 0 + line: 85 + uri: document_highlight.robot + name: seventh + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 79 + start: + character: 0 + line: 79 + uri: document_highlight.robot + name: sixth + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 50 + start: + character: 0 + line: 50 + uri: document_highlight.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 5 + start: + character: 0 + line: 5 + uri: duplicated.resource + name: A Resource Keyword A + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 15 + line: 8 + start: + character: 0 + line: 8 + uri: duplicated.resource + name: a dummy keyword + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 18 + line: 1 + start: + character: 0 + line: 1 + uri: duplicated.resource + name: duplicated keyword + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 5 + start: + character: 0 + line: 5 + uri: duplicated.resource + name: a resource keyword B + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 18 + line: 1 + start: + character: 0 + line: 1 + uri: duplicated.resource + name: duplicated keyword + tags: null +- !WorkspaceSymbol + container_name: duplicated_resources + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 13 + start: + character: 0 + line: 13 + uri: duplicated_resources.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: embedded_args + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 1 + start: + character: 3 + line: 1 + uri: embedded_args.resource + name: ${task} + tags: null +- !WorkspaceSymbol + container_name: embedded_args + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 1 + start: + character: 16 + line: 1 + uri: embedded_args.resource + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: embedded_args + data: null + kind: 12 + location: + range: + end: + character: 24 + line: 1 + start: + character: 0 + line: 1 + uri: embedded_args.resource + name: do ${task} with ${thing} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 10 + start: + character: 19 + line: 10 + uri: embedded_keywords.robot + name: ${data} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 13 + location: + range: + end: + character: 15 + line: 6 + start: + character: 3 + line: 6 + uri: embedded_keywords.robot + name: ${something} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 13 + location: + range: + end: + character: 15 + line: 9 + start: + character: 3 + line: 9 + uri: embedded_keywords.robot + name: ${something} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 6 + start: + character: 21 + line: 6 + uri: embedded_keywords.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 9 + start: + character: 21 + line: 9 + uri: embedded_keywords.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 1 + start: + character: 0 + line: 1 + uri: embedded_keywords.robot + name: Test 1 + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 12 + location: + range: + end: + character: 29 + line: 6 + start: + character: 0 + line: 6 + uri: embedded_keywords.robot + name: do ${something} with ${thing} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 12 + location: + range: + end: + character: 43 + line: 9 + start: + character: 0 + line: 9 + uri: embedded_keywords.robot + name: do ${something} with ${thing} and this data + tags: null +- !WorkspaceSymbol + container_name: external_libray + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: external_libray.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 2 + start: + character: 4 + line: 2 + uri: fibonaci.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 36 + start: + character: 4 + line: 36 + uri: fibonaci.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 27 + start: + character: 8 + line: 27 + uri: fibonaci.robot + name: ${n1} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 28 + start: + character: 8 + line: 28 + uri: fibonaci.robot + name: ${n2} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 22 + start: + character: 19 + line: 22 + uri: fibonaci.robot + name: ${n} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 35 + start: + character: 19 + line: 35 + uri: fibonaci.robot + name: ${n} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 13 + location: + range: + end: + character: 12 + line: 25 + start: + character: 8 + line: 25 + uri: fibonaci.robot + name: ${r} + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 5 + location: + range: + end: + character: 13 + line: 1 + start: + character: 0 + line: 1 + uri: fibonaci.robot + name: calc fibonaci + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 5 + location: + range: + end: + character: 18 + line: 5 + start: + character: 0 + line: 5 + uri: fibonaci.robot + name: calc fibonaci data + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 12 + location: + range: + end: + character: 16 + line: 34 + start: + character: 0 + line: 34 + uri: fibonaci.robot + name: calc fibonaci kw + tags: null +- !WorkspaceSymbol + container_name: fibonaci + data: null + kind: 12 + location: + range: + end: + character: 8 + line: 21 + start: + character: 0 + line: 21 + uri: fibonaci.robot + name: fibonaci + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: first.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 9 + start: + character: 0 + line: 9 + uri: first.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 1 + start: + character: 0 + line: 1 + uri: first.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 5 + start: + character: 0 + line: 5 + uri: first.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 10 + start: + character: 0 + line: 10 + uri: first.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 3 + start: + character: 0 + line: 3 + uri: first.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 32 + start: + character: 19 + line: 32 + uri: first.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 31 + start: + character: 4 + line: 31 + uri: first.robot + name: ${def} + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 13 + location: + range: + end: + character: 35 + line: 8 + start: + character: 30 + line: 8 + uri: first.robot + name: ${ex} + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 12 + location: + range: + end: + character: 14 + line: 31 + start: + character: 0 + line: 31 + uri: first.robot + name: abc ${def} hih + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 27 + start: + character: 0 + line: 27 + uri: first.robot + name: some failing keyword1 + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 24 + start: + character: 0 + line: 24 + uri: first.robot + name: some keyword + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 4 + line: 5 + start: + character: 0 + line: 5 + uri: first.robot + name: wip1 + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 3 + line: 15 + start: + character: 0 + line: 15 + uri: first.robot + name: wop + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 3 + line: 19 + start: + character: 0 + line: 19 + uri: first.robot + name: wup + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 4 + start: + character: 0 + line: 4 + uri: firstresource.resource + name: ${A_VAR_FROM_RESOURE} + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 41 + line: 23 + start: + character: 27 + line: 23 + uri: firstresource.resource + name: ${a long name} + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 61 + line: 23 + start: + character: 46 + line: 23 + uri: firstresource.resource + name: ${a_short_name} + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 23 + start: + character: 19 + line: 23 + uri: firstresource.resource + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 30 + start: + character: 19 + line: 30 + uri: firstresource.resource + name: "${\U0001F413}" + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 34 + line: 30 + start: + character: 27 + line: 30 + uri: firstresource.resource + name: "${\U0001F60E\U0001F60B\U0001F619\U0001F619}" + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 51 + line: 30 + start: + character: 39 + line: 30 + uri: firstresource.resource + name: "${\U0001F9DF\u200D\u2642\uFE0F\U0001F6C3\U0001FAC5\U0001F3FF\U0001F478\U0001F3FF\ + }" + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 19 + line: 22 + start: + character: 0 + line: 22 + uri: firstresource.resource + name: a keyword with args + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + uri: firstresource.resource + name: do something in a resource + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 10 + start: + character: 0 + line: 10 + uri: firstresource.resource + name: do.sell fish + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 14 + start: + character: 0 + line: 14 + uri: firstresource.resource + name: some failing keyword + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 2 + line: 26 + start: + character: 0 + line: 26 + uri: firstresource.resource + name: "\U0001F916\U0001F916" + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 53 + start: + character: 4 + line: 53 + uri: foldingrange.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 81 + start: + character: 4 + line: 81 + uri: foldingrange.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 13 + location: + range: + end: + character: 15 + line: 12 + start: + character: 11 + line: 12 + uri: foldingrange.robot + name: ${i} + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 8 + start: + character: 0 + line: 8 + uri: foldingrange.robot + name: First + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 13 + line: 52 + start: + character: 0 + line: 52 + uri: foldingrange.robot + name: IF statements + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 92 + start: + character: 0 + line: 92 + uri: foldingrange.robot + name: TRY statements + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 16 + line: 80 + start: + character: 0 + line: 80 + uri: foldingrange.robot + name: WHILE statements + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 12 + location: + range: + end: + character: 9 + line: 39 + start: + character: 0 + line: 39 + uri: foldingrange.robot + name: a keyword + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 4 + line: 31 + start: + character: 0 + line: 31 + uri: foldingrange.robot + name: "\U0001F690\U0001F693\U0001F6FA\U0001F699" + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 37 + line: 174 + start: + character: 28 + line: 174 + uri: goto.robot + name: ${A VAR1} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 21 + start: + character: 0 + line: 21 + uri: goto.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 155 + start: + character: 19 + line: 155 + uri: goto.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 36 + line: 164 + start: + character: 28 + line: 164 + uri: goto.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 36 + start: + character: 0 + line: 36 + uri: goto.robot + name: ${A} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 37 + start: + character: 0 + line: 37 + uri: goto.robot + name: ${B} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 11 + line: 25 + start: + character: 0 + line: 25 + uri: goto.robot + name: ${DOT} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 23 + start: + character: 0 + line: 23 + uri: goto.robot + name: ${LIB_ARG} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 20 + start: + character: 0 + line: 20 + uri: goto.robot + name: ${MY_DIR} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 213 + start: + character: 32 + line: 213 + uri: goto.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 218 + start: + character: 32 + line: 218 + uri: goto.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 50 + line: 32 + start: + character: 0 + line: 32 + uri: goto.robot + name: ${all together} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 213 + start: + character: 19 + line: 213 + uri: goto.robot + name: ${an_arg} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 218 + start: + character: 19 + line: 218 + uri: goto.robot + name: ${an_arg} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 136 + start: + character: 4 + line: 136 + uri: goto.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + uri: goto.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 187 + start: + character: 27 + line: 187 + uri: goto.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 68 + start: + character: 11 + line: 68 + uri: goto.robot + name: ${key} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 164 + start: + character: 19 + line: 164 + uri: goto.robot + name: ${tt} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 174 + start: + character: 19 + line: 174 + uri: goto.robot + name: ${tt} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 68 + start: + character: 21 + line: 68 + uri: goto.robot + name: ${value} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 35 + line: 22 + start: + character: 0 + line: 22 + uri: goto.robot + name: '&{A DICT}' + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 34 + line: 29 + start: + character: 0 + line: 29 + uri: goto.robot + name: '&{dict_var}' + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 27 + start: + character: 0 + line: 27 + uri: goto.robot + name: '@{list_var}' + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 154 + start: + character: 0 + line: 154 + uri: goto.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 204 + start: + character: 0 + line: 204 + uri: goto.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 217 + start: + character: 0 + line: 217 + uri: goto.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + uri: goto.robot + name: a simple keyword + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 16 + line: 98 + start: + character: 0 + line: 98 + uri: goto.robot + name: a templated Test + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 186 + start: + character: 0 + line: 186 + uri: goto.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 163 + start: + character: 0 + line: 163 + uri: goto.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 142 + start: + character: 0 + line: 142 + uri: goto.robot + name: eighth + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 40 + start: + character: 0 + line: 40 + uri: goto.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 108 + start: + character: 0 + line: 108 + uri: goto.robot + name: forth + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 32 + line: 173 + start: + character: 0 + line: 173 + uri: goto.robot + name: just another keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 89 + start: + character: 0 + line: 89 + uri: goto.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 7 + line: 139 + start: + character: 0 + line: 139 + uri: goto.robot + name: seventh + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 112 + start: + character: 0 + line: 112 + uri: goto.robot + name: sixth + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 7 + line: 196 + start: + character: 0 + line: 196 + uri: goto.robot + name: test kw + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 105 + start: + character: 0 + line: 105 + uri: goto.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: grouptest + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 1 + start: + character: 0 + line: 1 + uri: grouptest.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 30 + start: + character: 0 + line: 30 + uri: hover.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 267 + start: + character: 19 + line: 267 + uri: hover.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 36 + line: 276 + start: + character: 28 + line: 276 + uri: hover.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 41 + start: + character: 0 + line: 41 + uri: hover.robot + name: ${A} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 9 + line: 42 + start: + character: 0 + line: 42 + uri: hover.robot + name: ${B} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 43 + start: + character: 0 + line: 43 + uri: hover.robot + name: ${C} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 9 + line: 56 + start: + character: 0 + line: 56 + uri: hover.robot + name: ${D} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 41 + line: 57 + start: + character: 0 + line: 57 + uri: hover.robot + name: ${E} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 58 + start: + character: 0 + line: 58 + uri: hover.robot + name: ${F} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 38 + line: 48 + start: + character: 0 + line: 48 + uri: hover.robot + name: ${K} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 36 + start: + character: 0 + line: 36 + uri: hover.robot + name: ${LIB_ARG} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 286 + start: + character: 19 + line: 286 + uri: hover.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 286 + start: + character: 27 + line: 286 + uri: hover.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 298 + start: + character: 16 + line: 298 + uri: hover.robot + name: ${e} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 81 + start: + character: 11 + line: 81 + uri: hover.robot + name: ${key} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 111 + start: + character: 4 + line: 111 + uri: hover.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 276 + start: + character: 19 + line: 276 + uri: hover.robot + name: ${tt} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 81 + start: + character: 21 + line: 81 + uri: hover.robot + name: ${value} + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 13 + location: + range: + end: + character: 35 + line: 33 + start: + character: 0 + line: 33 + uri: hover.robot + name: '&{A DICT}' + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 9 + line: 241 + start: + character: 0 + line: 241 + uri: hover.robot + name: a keyword + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 266 + start: + character: 0 + line: 266 + uri: hover.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 25 + line: 295 + start: + character: 0 + line: 295 + uri: hover.robot + name: a keyword with try except + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 16 + line: 258 + start: + character: 0 + line: 258 + uri: hover.robot + name: a simple keyword + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 285 + start: + character: 0 + line: 285 + uri: hover.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 275 + start: + character: 0 + line: 275 + uri: hover.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 192 + start: + character: 0 + line: 192 + uri: hover.robot + name: eight + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 8 + line: 217 + start: + character: 0 + line: 217 + uri: hover.robot + name: eleventh + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 62 + start: + character: 0 + line: 62 + uri: hover.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 119 + start: + character: 0 + line: 119 + uri: hover.robot + name: forth + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 199 + start: + character: 0 + line: 199 + uri: hover.robot + name: nineth + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 102 + start: + character: 0 + line: 102 + uri: hover.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 7 + line: 150 + start: + character: 0 + line: 150 + uri: hover.robot + name: seventh + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 8 + line: 187 + start: + character: 0 + line: 187 + uri: hover.robot + name: seventh1 + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 125 + start: + character: 0 + line: 125 + uri: hover.robot + name: sixth + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 13 + line: 262 + start: + character: 0 + line: 262 + uri: hover.robot + name: sleep a while + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 213 + start: + character: 0 + line: 213 + uri: hover.robot + name: tenth + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 110 + start: + character: 0 + line: 110 + uri: hover.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 7 + line: 234 + start: + character: 0 + line: 234 + uri: hover.robot + name: twelfth + tags: null +- !WorkspaceSymbol + container_name: indexed_variables + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 2 + start: + character: 0 + line: 2 + uri: indexed_variables.robot + name: ${index} + tags: null +- !WorkspaceSymbol + container_name: indexed_variables + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 1 + start: + character: 0 + line: 1 + uri: indexed_variables.robot + name: '@{A_LIST}' + tags: null +- !WorkspaceSymbol + container_name: indexed_variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 6 + start: + character: 0 + line: 6 + uri: indexed_variables.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: jsonvariables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 4 + start: + character: 0 + line: 4 + uri: jsonvariables.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: part1__suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: part1__suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: part2__suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: part2__suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: part2__suite + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 4 + start: + character: 0 + line: 4 + uri: part2__suite.robot + name: second test + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 13 + location: + range: + end: + character: 21 + line: 1 + start: + character: 0 + line: 1 + uri: playground.robot + name: ${2} + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 13 + location: + range: + end: + character: 12 + line: 2 + start: + character: 0 + line: 2 + uri: playground.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 22 + start: + character: 19 + line: 22 + uri: playground.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 22 + start: + character: 27 + line: 22 + uri: playground.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 15 + start: + character: 4 + line: 15 + uri: playground.robot + name: ${v} + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 6 + start: + character: 0 + line: 6 + uri: playground.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 12 + location: + range: + end: + character: 8 + line: 21 + start: + character: 0 + line: 21 + uri: playground.robot + name: first kw + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 150 + start: + character: 19 + line: 150 + uri: references.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 36 + line: 159 + start: + character: 28 + line: 159 + uri: references.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 24 + start: + character: 0 + line: 24 + uri: references.robot + name: ${LIB_ARG} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 270 + start: + character: 4 + line: 270 + uri: references.robot + name: ${MATCH TYPE} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 22 + start: + character: 0 + line: 22 + uri: references.robot + name: ${a var} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 25 + line: 245 + start: + character: 19 + line: 245 + uri: references.robot + name: ${arg} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 169 + start: + character: 19 + line: 169 + uri: references.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 187 + start: + character: 19 + line: 187 + uri: references.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 193 + start: + character: 19 + line: 193 + uri: references.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 26 + start: + character: 0 + line: 26 + uri: references.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 145 + start: + character: 7 + line: 145 + uri: references.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 16 + line: 269 + start: + character: 4 + line: 269 + uri: references.robot + name: ${beginning} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 169 + start: + character: 27 + line: 169 + uri: references.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 187 + start: + character: 27 + line: 187 + uri: references.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 193 + start: + character: 27 + line: 193 + uri: references.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 210 + start: + character: 13 + line: 210 + uri: references.robot + name: ${counter} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 258 + start: + character: 19 + line: 258 + uri: references.robot + name: ${count} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 12 + line: 260 + start: + character: 11 + line: 260 + uri: references.robot + name: ${i} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 247 + start: + character: 17 + line: 247 + uri: references.robot + name: ${my var} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 125 + start: + character: 4 + line: 125 + uri: references.robot + name: ${number} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 226 + start: + character: 13 + line: 226 + uri: references.robot + name: ${output} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 59 + start: + character: 4 + line: 59 + uri: references.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 205 + start: + character: 4 + line: 205 + uri: references.robot + name: ${result} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 236 + start: + character: 19 + line: 236 + uri: references.robot + name: ${retries} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 41 + line: 258 + start: + character: 31 + line: 258 + uri: references.robot + name: ${retries} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 38 + line: 125 + start: + character: 30 + line: 125 + uri: references.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 33 + line: 132 + start: + character: 25 + line: 132 + uri: references.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 33 + line: 137 + start: + character: 25 + line: 137 + uri: references.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 34 + line: 141 + start: + character: 26 + line: 141 + uri: references.robot + name: ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 159 + start: + character: 19 + line: 159 + uri: references.robot + name: ${tt} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 118 + start: + character: 13 + line: 118 + uri: references.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 122 + start: + character: 19 + line: 122 + uri: references.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 25 + line: 224 + start: + character: 19 + line: 224 + uri: references.robot + name: ${val} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 21 + line: 132 + start: + character: 4 + line: 132 + uri: references.robot + name: ${what} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 21 + line: 137 + start: + character: 4 + line: 137 + uri: references.robot + name: ${what} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 141 + start: + character: 4 + line: 141 + uri: references.robot + name: ${what} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 11 + line: 27 + start: + character: 0 + line: 27 + uri: references.robot + name: "${\U0001F9E8\U0001F9E8}" + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 243 + start: + character: 0 + line: 243 + uri: references.robot + name: a keyword with VAR in condition + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 209 + start: + character: 0 + line: 209 + uri: references.robot + name: a keyword with a while loop + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 57 + line: 234 + start: + character: 0 + line: 234 + uri: references.robot + name: a keyword with a while loop and variable in while options + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 149 + start: + character: 0 + line: 149 + uri: references.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 33 + line: 220 + start: + character: 0 + line: 220 + uri: references.robot + name: a keyword with python expressions + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 178 + start: + character: 0 + line: 178 + uri: references.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 191 + start: + character: 0 + line: 191 + uri: references.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 44 + line: 256 + start: + character: 0 + line: 256 + uri: references.robot + name: a keyword with while and expression variable + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: references.robot + name: add ${number:[0-9]+} coins to ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 34 + line: 141 + start: + character: 0 + line: 141 + uri: references.robot + name: add ${what:[a-zA-Z ]+} to ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 33 + line: 132 + start: + character: 0 + line: 132 + uri: references.robot + name: add ${what:[a-zA-Z]+} to ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 33 + line: 137 + start: + character: 0 + line: 137 + uri: references.robot + name: add ${what:[a-zA-Z]+} to ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 168 + start: + character: 0 + line: 168 + uri: references.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 158 + start: + character: 0 + line: 158 + uri: references.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: references.robot + name: do add ${bananas} and to my bag + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 121 + start: + character: 0 + line: 121 + uri: references.robot + name: do something + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 118 + start: + character: 0 + line: 118 + uri: references.robot + name: do something ${type} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 68 + start: + character: 0 + line: 68 + uri: references.robot + name: fifth + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 31 + start: + character: 0 + line: 31 + uri: references.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 58 + start: + character: 0 + line: 58 + uri: references.robot + name: forth + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 46 + start: + character: 0 + line: 46 + uri: references.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 7 + line: 110 + start: + character: 0 + line: 110 + uri: references.robot + name: seventh + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 102 + start: + character: 0 + line: 102 + uri: references.robot + name: sixth + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 52 + start: + character: 0 + line: 52 + uri: references.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 23 + line: 268 + start: + character: 0 + line: 268 + uri: references.robot + name: try except with options + tags: null +- !WorkspaceSymbol + container_name: remotetest + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: remotetest.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: reserved + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 1 + start: + character: 0 + line: 1 + uri: reserved.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: second + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: second.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: second + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 9 + start: + character: 0 + line: 9 + uri: second.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 31 + start: + character: 19 + line: 31 + uri: sematic_tokenizing.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 31 + start: + character: 27 + line: 31 + uri: sematic_tokenizing.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 13 + location: + range: + end: + character: 39 + line: 31 + start: + character: 35 + line: 31 + uri: sematic_tokenizing.robot + name: ${c} + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 26 + start: + character: 19 + line: 26 + uri: sematic_tokenizing.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 40 + line: 4 + start: + character: 0 + line: 4 + uri: sematic_tokenizing.robot + name: Continue when iteration limit is reached + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 24 + line: 10 + start: + character: 0 + line: 10 + uri: sematic_tokenizing.robot + name: Limit as iteration count + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 25 + start: + character: 0 + line: 25 + uri: sematic_tokenizing.robot + name: do something + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 27 + line: 20 + start: + character: 0 + line: 20 + uri: sematic_tokenizing.robot + name: some embedded args keywords + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 15 + start: + character: 0 + line: 15 + uri: sematic_tokenizing.robot + name: some templated + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 12 + location: + range: + end: + character: 8 + line: 30 + start: + character: 0 + line: 30 + uri: sematic_tokenizing.robot + name: template + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 26 + start: + character: 13 + line: 26 + uri: setup_teardown.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 30 + start: + character: 19 + line: 30 + uri: setup_teardown.robot + name: ${type} + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 14 + start: + character: 0 + line: 14 + uri: setup_teardown.robot + name: Second + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 19 + start: + character: 0 + line: 19 + uri: setup_teardown.robot + name: Third + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 12 + location: + range: + end: + character: 5 + line: 33 + start: + character: 0 + line: 33 + uri: setup_teardown.robot + name: _NONE + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 29 + start: + character: 0 + line: 29 + uri: setup_teardown.robot + name: do something + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 26 + start: + character: 0 + line: 26 + uri: setup_teardown.robot + name: do something ${type} + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 10 + start: + character: 0 + line: 10 + uri: setup_teardown.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 19 + start: + character: 4 + line: 19 + uri: signature_help.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 13 + location: + range: + end: + character: 16 + line: 19 + start: + character: 12 + line: 19 + uri: signature_help.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 13 + location: + range: + end: + character: 57 + line: 32 + start: + character: 50 + line: 32 + uri: signature_help.robot + name: ${html} + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 13 + location: + range: + end: + character: 41 + line: 32 + start: + character: 33 + line: 32 + uri: signature_help.robot + name: ${level} + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 13 + location: + range: + end: + character: 29 + line: 32 + start: + character: 19 + line: 32 + uri: signature_help.robot + name: ${message} + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 12 + location: + range: + end: + character: 26 + line: 31 + start: + character: 0 + line: 31 + uri: signature_help.robot + name: do something from resource + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 11 + start: + character: 0 + line: 11 + uri: signature_help.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: simple + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple suite_ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple suite_.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple_ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple_.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: some_tasks + data: null + kind: 5 + location: + range: + end: + character: 13 + line: 1 + start: + character: 0 + line: 1 + uri: some_tasks.robot + name: a simple task + tags: null +- !WorkspaceSymbol + container_name: some_tasks + data: null + kind: 5 + location: + range: + end: + character: 19 + line: 4 + start: + character: 0 + line: 4 + uri: some_tasks.robot + name: another simple task + tags: null +- !WorkspaceSymbol + container_name: sometasks + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: sometasks.robot + name: first task + tags: null +- !WorkspaceSymbol + container_name: sometasks + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 4 + start: + character: 0 + line: 4 + uri: sometasks.robot + name: second task + tags: null +- !WorkspaceSymbol + container_name: suite_with_name + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 4 + start: + character: 0 + line: 4 + uri: suite_with_name.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 6 + start: + character: 0 + line: 6 + uri: symbols.robot + name: ${A_VAR} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 35 + line: 28 + start: + character: 29 + line: 28 + uri: symbols.robot + name: ${exc} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + uri: symbols.robot + name: ${first} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 33 + line: 16 + start: + character: 20 + line: 16 + uri: symbols.robot + name: ${kw_result1} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 16 + line: 13 + start: + character: 4 + line: 13 + uri: symbols.robot + name: ${kw_result} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 19 + start: + character: 11 + line: 19 + uri: symbols.robot + name: ${local_var} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 21 + start: + character: 9 + line: 21 + uri: symbols.robot + name: ${loop_var} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 40 + line: 41 + start: + character: 31 + line: 41 + uri: symbols.robot + name: ${second} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 16 + line: 64 + start: + character: 11 + line: 64 + uri: symbols.robot + name: ${var 1} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 16 + line: 66 + start: + character: 11 + line: 66 + uri: symbols.robot + name: ${var 2} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 12 + location: + range: + end: + character: 10 + line: 39 + start: + character: 0 + line: 39 + uri: symbols.robot + name: a keywords + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 12 + location: + range: + end: + character: 15 + line: 46 + start: + character: 0 + line: 46 + uri: symbols.robot + name: another keyword + tags: + - 1 +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 11 + start: + character: 0 + line: 11 + uri: symbols.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 5 + location: + range: + end: + character: 20 + line: 63 + start: + character: 0 + line: 63 + uri: symbols.robot + name: vars with equal sign + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 6 + start: + character: 0 + line: 6 + uri: templates.robot + name: ${A VAR} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 25 + line: 79 + start: + character: 19 + line: 79 + uri: templates.robot + name: ${aaa} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 61 + start: + character: 19 + line: 61 + uri: templates.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 68 + start: + character: 19 + line: 68 + uri: templates.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 15 + line: 85 + start: + character: 11 + line: 85 + uri: templates.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 89 + start: + character: 19 + line: 89 + uri: templates.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 61 + start: + character: 27 + line: 61 + uri: templates.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 68 + start: + character: 27 + line: 68 + uri: templates.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 32 + line: 85 + start: + character: 21 + line: 85 + uri: templates.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 89 + start: + character: 27 + line: 89 + uri: templates.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 39 + line: 61 + start: + character: 35 + line: 61 + uri: templates.robot + name: ${c} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 39 + line: 68 + start: + character: 35 + line: 68 + uri: templates.robot + name: ${c} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 85 + start: + character: 36 + line: 85 + uri: templates.robot + name: ${expected} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 46 + line: 89 + start: + character: 35 + line: 89 + uri: templates.robot + name: ${expected} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 15 + line: 81 + start: + character: 11 + line: 81 + uri: templates.robot + name: ${i} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + uri: templates.robot + name: '@{LIST VAR}' + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 19 + line: 78 + start: + character: 0 + line: 78 + uri: templates.robot + name: a keyword with loop + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 47 + line: 85 + start: + character: 0 + line: 85 + uri: templates.robot + name: check that ${a} plus ${b:[a-c]+} is ${expected} + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 74 + start: + character: 0 + line: 74 + uri: templates.robot + name: do something + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 10 + start: + character: 0 + line: 10 + uri: templates.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 20 + start: + character: 0 + line: 20 + uri: templates.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 22 + line: 60 + start: + character: 0 + line: 60 + uri: templates.robot + name: suite template keyword + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 16 + line: 67 + start: + character: 0 + line: 67 + uri: templates.robot + name: template keyword + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 9 + line: 30 + start: + character: 0 + line: 30 + uri: templates.robot + name: templated + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 88 + start: + character: 0 + line: 88 + uri: templates.robot + name: templated kw + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 23 + line: 35 + start: + character: 0 + line: 35 + uri: templates.robot + name: templated with embedded + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 35 + line: 54 + start: + character: 0 + line: 54 + uri: templates.robot + name: templated with embedded not defined + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 24 + line: 44 + start: + character: 0 + line: 44 + uri: templates.robot + name: templated with embedded1 + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 24 + line: 39 + start: + character: 0 + line: 39 + uri: templates.robot + name: templated with embedded2 + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 24 + line: 49 + start: + character: 0 + line: 49 + uri: templates.robot + name: templated with embedded3 + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 26 + start: + character: 0 + line: 26 + uri: templates.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 5 + start: + character: 0 + line: 5 + uri: templates2.robot + name: ${VALID PASSWORD} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 4 + start: + character: 0 + line: 4 + uri: templates2.robot + name: ${VALID USER} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 53 + start: + character: 19 + line: 53 + uri: templates2.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 31 + line: 53 + start: + character: 27 + line: 53 + uri: templates2.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 22 + start: + character: 11 + line: 22 + uri: templates2.robot + name: ${index} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 18 + line: 19 + start: + character: 11 + line: 19 + uri: templates2.robot + name: ${item} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 18 + line: 28 + start: + character: 11 + line: 28 + uri: templates2.robot + name: ${item} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 18 + line: 38 + start: + character: 11 + line: 38 + uri: templates2.robot + name: ${item} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 45 + line: 49 + start: + character: 34 + line: 49 + uri: templates2.robot + name: ${password} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 30 + line: 49 + start: + character: 19 + line: 49 + uri: templates2.robot + name: ${username} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 38 + line: 6 + start: + character: 0 + line: 6 + uri: templates2.robot + name: '@{ITEMS}' + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 13 + start: + character: 0 + line: 13 + uri: templates2.robot + name: Empty Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 15 + line: 12 + start: + character: 0 + line: 12 + uri: templates2.robot + name: Empty User Name + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 28 + line: 14 + start: + character: 0 + line: 14 + uri: templates2.robot + name: Empty User Name and Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 12 + location: + range: + end: + character: 15 + line: 52 + start: + character: 0 + line: 52 + uri: templates2.robot + name: Example keyword + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 16 + line: 10 + start: + character: 0 + line: 10 + uri: templates2.robot + name: Invalid Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 17 + line: 9 + start: + character: 0 + line: 9 + uri: templates2.robot + name: Invalid User Name + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 30 + line: 11 + start: + character: 0 + line: 11 + uri: templates2.robot + name: Invalid User Name and Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 12 + location: + range: + end: + character: 42 + line: 48 + start: + character: 0 + line: 48 + uri: templates2.robot + name: Login with invalid credentials should fail + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 24 + line: 26 + start: + character: 0 + line: 26 + uri: templates2.robot + name: Template with FOR and IF + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 32 + line: 36 + start: + character: 0 + line: 36 + uri: templates2.robot + name: Template with FOR and IF invalid + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 22 + line: 17 + start: + character: 0 + line: 17 + uri: templates2.robot + name: Template with FOR loop + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 16 + line: 12 + start: + character: 0 + line: 12 + uri: variables.robot + name: ${DD} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 124 + start: + character: 0 + line: 124 + uri: variables.robot + name: ${INFO_DATA} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 12 + line: 11 + start: + character: 0 + line: 11 + uri: variables.robot + name: ${UU} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 123 + start: + character: 0 + line: 123 + uri: variables.robot + name: ${VALUE} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 12 + line: 10 + start: + character: 0 + line: 10 + uri: variables.robot + name: ${ZZ} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 25 + line: 167 + start: + character: 19 + line: 167 + uri: variables.robot + name: ${aaa} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 64 + start: + character: 4 + line: 64 + uri: variables.robot + name: ${asd} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 75 + start: + character: 4 + line: 75 + uri: variables.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 83 + start: + character: 4 + line: 83 + uri: variables.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 99 + start: + character: 4 + line: 99 + uri: variables.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 173 + start: + character: 11 + line: 173 + uri: variables.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 21 + line: 177 + start: + character: 17 + line: 177 + uri: variables.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 76 + start: + character: 4 + line: 76 + uri: variables.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 84 + start: + character: 4 + line: 84 + uri: variables.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 100 + start: + character: 4 + line: 100 + uri: variables.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 34 + line: 173 + start: + character: 30 + line: 173 + uri: variables.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 177 + start: + character: 23 + line: 177 + uri: variables.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 77 + start: + character: 4 + line: 77 + uri: variables.robot + name: ${c} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 102 + start: + character: 4 + line: 102 + uri: variables.robot + name: ${c} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 78 + start: + character: 4 + line: 78 + uri: variables.robot + name: ${d} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 49 + line: 173 + start: + character: 38 + line: 173 + uri: variables.robot + name: ${expected} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 40 + line: 177 + start: + character: 29 + line: 177 + uri: variables.robot + name: ${expected} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 79 + start: + character: 4 + line: 79 + uri: variables.robot + name: ${e} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 43 + line: 9 + start: + character: 0 + line: 9 + uri: variables.robot + name: ${full_name} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 8 + line: 80 + start: + character: 4 + line: 80 + uri: variables.robot + name: ${f} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 68 + start: + character: 4 + line: 68 + uri: variables.robot + name: ${hello there1} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 52 + start: + character: 9 + line: 52 + uri: variables.robot + name: ${i} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 169 + start: + character: 9 + line: 169 + uri: variables.robot + name: ${i} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 84 + line: 181 + start: + character: 73 + line: 181 + uri: variables.robot + name: ${keywords} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 99 + line: 181 + start: + character: 88 + line: 181 + uri: variables.robot + name: ${listener} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 26 + line: 181 + start: + character: 19 + line: 181 + uri: variables.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 57 + line: 8 + start: + character: 0 + line: 8 + uri: variables.robot + name: ${pre_full_name} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 69 + line: 181 + start: + character: 61 + line: 181 + uri: variables.robot + name: ${scope} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 181 + start: + character: 37 + line: 181 + uri: variables.robot + name: ${version} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 11 + line: 14 + start: + character: 0 + line: 14 + uri: variables.robot + name: "${\U0001F9E8\U0001F9E8}" + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 13 + line: 71 + start: + character: 4 + line: 71 + uri: variables.robot + name: '&{a dict}' + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 180 + start: + character: 0 + line: 180 + uri: variables.robot + name: a keyword with kwonly separator + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 19 + line: 166 + start: + character: 0 + line: 166 + uri: variables.robot + name: a keyword with loop + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 173 + start: + character: 0 + line: 173 + uri: variables.robot + name: check that ${a:[0-9\ ]*} plus ${b} is ${expected} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 162 + start: + character: 0 + line: 162 + uri: variables.robot + name: do something + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 5 + line: 184 + start: + character: 0 + line: 184 + uri: variables.robot + name: dummy + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 15 + line: 154 + start: + character: 0 + line: 154 + uri: variables.robot + name: environmentvars + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 82 + start: + character: 0 + line: 82 + uri: variables.robot + name: fifth + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 17 + start: + character: 0 + line: 17 + uri: variables.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 74 + start: + character: 0 + line: 74 + uri: variables.robot + name: fourth + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 15 + line: 157 + start: + character: 0 + line: 157 + uri: variables.robot + name: named arguments + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 6 + line: 51 + start: + character: 0 + line: 51 + uri: variables.robot + name: second + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 7 + line: 115 + start: + character: 0 + line: 115 + uri: variables.robot + name: seventh + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 98 + start: + character: 0 + line: 98 + uri: variables.robot + name: sixth + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 2 + line: 127 + start: + character: 0 + line: 127 + uri: variables.robot + name: tc + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 9 + line: 133 + start: + character: 0 + line: 133 + uri: variables.robot + name: templated + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 12 + line: 176 + start: + character: 0 + line: 176 + uri: variables.robot + name: templated kw + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 23 + line: 138 + start: + character: 0 + line: 138 + uri: variables.robot + name: templated with embedded + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 23 + line: 143 + start: + character: 0 + line: 143 + uri: variables.robot + name: templated with embedded + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 35 + line: 149 + start: + character: 0 + line: 149 + uri: variables.robot + name: templated with embedded not defined + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 59 + start: + character: 0 + line: 59 + uri: variables.robot + name: third + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 4 + start: + character: 13 + line: 4 + uri: vartest.robot + name: ${RESULT} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 10 + start: + character: 13 + line: 10 + uri: vartest.robot + name: ${RESULT} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 17 + start: + character: 13 + line: 17 + uri: vartest.robot + name: ${RESULT} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 39 + start: + character: 32 + line: 39 + uri: vartest.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 45 + start: + character: 32 + line: 45 + uri: vartest.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 39 + start: + character: 19 + line: 39 + uri: vartest.robot + name: ${an_arg} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 28 + line: 45 + start: + character: 19 + line: 45 + uri: vartest.robot + name: ${an_arg} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 2 + start: + character: 13 + line: 2 + uri: vartest.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 8 + start: + character: 13 + line: 8 + uri: vartest.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 15 + start: + character: 13 + line: 15 + uri: vartest.robot + name: ${a} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 3 + start: + character: 13 + line: 3 + uri: vartest.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 9 + start: + character: 13 + line: 9 + uri: vartest.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 16 + start: + character: 13 + line: 16 + uri: vartest.robot + name: ${b} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 21 + start: + character: 13 + line: 21 + uri: vartest.robot + name: '&{a}' + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 14 + line: 25 + start: + character: 13 + line: 25 + uri: vartest.robot + name: '@{a}' + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 29 + start: + character: 0 + line: 29 + uri: vartest.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 43 + start: + character: 0 + line: 43 + uri: vartest.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 8 + line: 20 + start: + character: 0 + line: 20 + uri: vartest.robot + name: dict var + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 8 + line: 24 + start: + character: 0 + line: 24 + uri: vartest.robot + name: list var + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: vartest.robot + name: simple var + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 22 + line: 14 + start: + character: 0 + line: 14 + uri: vartest.robot + name: var with invalid scope + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 7 + start: + character: 0 + line: 7 + uri: vartest.robot + name: var with scope + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 54 + line: 4651 + start: + character: 45 + line: 4651 + uri: very_big_file.robot + name: ${action} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 35 + line: 5 + start: + character: 0 + line: 5 + uri: very_big_file.robot + name: ${city_name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 63 + line: 4627 + start: + character: 51 + line: 4627 + uri: very_big_file.robot + name: ${city_name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 71 + line: 8 + start: + character: 0 + line: 8 + uri: very_big_file.robot + name: ${cryptic_answer} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 69 + line: 4639 + start: + character: 52 + line: 4639 + uri: very_big_file.robot + name: ${cryptic_answer} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 34 + line: 6 + start: + character: 0 + line: 6 + uri: very_big_file.robot + name: ${location} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 64 + line: 4631 + start: + character: 53 + line: 4631 + uri: very_big_file.robot + name: ${location} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 4623 + start: + character: 17 + line: 4623 + uri: very_big_file.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 4627 + start: + character: 12 + line: 4627 + uri: very_big_file.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 4631 + start: + character: 40 + line: 4631 + uri: very_big_file.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 19 + line: 4639 + start: + character: 12 + line: 4639 + uri: very_big_file.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 4651 + start: + character: 17 + line: 4651 + uri: very_big_file.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 37 + line: 4655 + start: + character: 30 + line: 4655 + uri: very_big_file.robot + name: ${name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 62 + line: 7 + start: + character: 0 + line: 7 + uri: very_big_file.robot + name: ${question} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 73 + line: 4635 + start: + character: 62 + line: 4635 + uri: very_big_file.robot + name: ${question} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 35 + line: 4647 + start: + character: 28 + line: 4647 + uri: very_big_file.robot + name: ${test} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 12 + start: + character: 0 + line: 12 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 705 + start: + character: 0 + line: 705 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 716 + start: + character: 0 + line: 716 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 727 + start: + character: 0 + line: 727 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 738 + start: + character: 0 + line: 738 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 749 + start: + character: 0 + line: 749 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 760 + start: + character: 0 + line: 760 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 771 + start: + character: 0 + line: 771 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 782 + start: + character: 0 + line: 782 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 793 + start: + character: 0 + line: 793 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 804 + start: + character: 0 + line: 804 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 815 + start: + character: 0 + line: 815 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 826 + start: + character: 0 + line: 826 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 837 + start: + character: 0 + line: 837 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 848 + start: + character: 0 + line: 848 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 859 + start: + character: 0 + line: 859 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 870 + start: + character: 0 + line: 870 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 881 + start: + character: 0 + line: 881 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 892 + start: + character: 0 + line: 892 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 903 + start: + character: 0 + line: 903 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 914 + start: + character: 0 + line: 914 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 925 + start: + character: 0 + line: 925 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 936 + start: + character: 0 + line: 936 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 947 + start: + character: 0 + line: 947 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 958 + start: + character: 0 + line: 958 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 969 + start: + character: 0 + line: 969 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 980 + start: + character: 0 + line: 980 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 991 + start: + character: 0 + line: 991 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1002 + start: + character: 0 + line: 1002 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1013 + start: + character: 0 + line: 1013 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1024 + start: + character: 0 + line: 1024 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1035 + start: + character: 0 + line: 1035 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1046 + start: + character: 0 + line: 1046 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1057 + start: + character: 0 + line: 1057 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1068 + start: + character: 0 + line: 1068 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1079 + start: + character: 0 + line: 1079 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1090 + start: + character: 0 + line: 1090 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1101 + start: + character: 0 + line: 1101 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1112 + start: + character: 0 + line: 1112 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1123 + start: + character: 0 + line: 1123 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1134 + start: + character: 0 + line: 1134 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1145 + start: + character: 0 + line: 1145 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1156 + start: + character: 0 + line: 1156 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1167 + start: + character: 0 + line: 1167 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1178 + start: + character: 0 + line: 1178 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1189 + start: + character: 0 + line: 1189 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1200 + start: + character: 0 + line: 1200 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1211 + start: + character: 0 + line: 1211 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1222 + start: + character: 0 + line: 1222 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1233 + start: + character: 0 + line: 1233 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1244 + start: + character: 0 + line: 1244 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1255 + start: + character: 0 + line: 1255 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1266 + start: + character: 0 + line: 1266 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1277 + start: + character: 0 + line: 1277 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1288 + start: + character: 0 + line: 1288 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1299 + start: + character: 0 + line: 1299 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1310 + start: + character: 0 + line: 1310 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1321 + start: + character: 0 + line: 1321 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1332 + start: + character: 0 + line: 1332 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1343 + start: + character: 0 + line: 1343 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1354 + start: + character: 0 + line: 1354 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1365 + start: + character: 0 + line: 1365 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1376 + start: + character: 0 + line: 1376 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1387 + start: + character: 0 + line: 1387 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1398 + start: + character: 0 + line: 1398 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1409 + start: + character: 0 + line: 1409 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1420 + start: + character: 0 + line: 1420 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1431 + start: + character: 0 + line: 1431 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1442 + start: + character: 0 + line: 1442 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1453 + start: + character: 0 + line: 1453 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1464 + start: + character: 0 + line: 1464 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1475 + start: + character: 0 + line: 1475 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1486 + start: + character: 0 + line: 1486 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1497 + start: + character: 0 + line: 1497 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1508 + start: + character: 0 + line: 1508 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1519 + start: + character: 0 + line: 1519 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1530 + start: + character: 0 + line: 1530 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1541 + start: + character: 0 + line: 1541 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1552 + start: + character: 0 + line: 1552 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1563 + start: + character: 0 + line: 1563 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1574 + start: + character: 0 + line: 1574 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1585 + start: + character: 0 + line: 1585 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1596 + start: + character: 0 + line: 1596 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1607 + start: + character: 0 + line: 1607 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1618 + start: + character: 0 + line: 1618 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1629 + start: + character: 0 + line: 1629 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1640 + start: + character: 0 + line: 1640 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1651 + start: + character: 0 + line: 1651 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1662 + start: + character: 0 + line: 1662 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1673 + start: + character: 0 + line: 1673 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1684 + start: + character: 0 + line: 1684 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1695 + start: + character: 0 + line: 1695 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1706 + start: + character: 0 + line: 1706 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1717 + start: + character: 0 + line: 1717 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1728 + start: + character: 0 + line: 1728 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1739 + start: + character: 0 + line: 1739 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1750 + start: + character: 0 + line: 1750 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1761 + start: + character: 0 + line: 1761 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1772 + start: + character: 0 + line: 1772 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1783 + start: + character: 0 + line: 1783 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1794 + start: + character: 0 + line: 1794 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1805 + start: + character: 0 + line: 1805 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1816 + start: + character: 0 + line: 1816 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1827 + start: + character: 0 + line: 1827 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1838 + start: + character: 0 + line: 1838 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1849 + start: + character: 0 + line: 1849 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1860 + start: + character: 0 + line: 1860 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1871 + start: + character: 0 + line: 1871 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1882 + start: + character: 0 + line: 1882 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1893 + start: + character: 0 + line: 1893 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1904 + start: + character: 0 + line: 1904 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1915 + start: + character: 0 + line: 1915 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1926 + start: + character: 0 + line: 1926 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1937 + start: + character: 0 + line: 1937 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1948 + start: + character: 0 + line: 1948 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1959 + start: + character: 0 + line: 1959 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1970 + start: + character: 0 + line: 1970 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1981 + start: + character: 0 + line: 1981 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1992 + start: + character: 0 + line: 1992 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2003 + start: + character: 0 + line: 2003 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2014 + start: + character: 0 + line: 2014 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2025 + start: + character: 0 + line: 2025 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2036 + start: + character: 0 + line: 2036 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2047 + start: + character: 0 + line: 2047 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2058 + start: + character: 0 + line: 2058 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2069 + start: + character: 0 + line: 2069 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2080 + start: + character: 0 + line: 2080 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2091 + start: + character: 0 + line: 2091 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2102 + start: + character: 0 + line: 2102 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2113 + start: + character: 0 + line: 2113 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2124 + start: + character: 0 + line: 2124 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2135 + start: + character: 0 + line: 2135 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2146 + start: + character: 0 + line: 2146 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2157 + start: + character: 0 + line: 2157 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2168 + start: + character: 0 + line: 2168 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2179 + start: + character: 0 + line: 2179 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2190 + start: + character: 0 + line: 2190 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2201 + start: + character: 0 + line: 2201 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2212 + start: + character: 0 + line: 2212 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2223 + start: + character: 0 + line: 2223 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2234 + start: + character: 0 + line: 2234 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2245 + start: + character: 0 + line: 2245 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2256 + start: + character: 0 + line: 2256 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2267 + start: + character: 0 + line: 2267 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2278 + start: + character: 0 + line: 2278 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2289 + start: + character: 0 + line: 2289 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2300 + start: + character: 0 + line: 2300 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2311 + start: + character: 0 + line: 2311 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2322 + start: + character: 0 + line: 2322 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2333 + start: + character: 0 + line: 2333 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2344 + start: + character: 0 + line: 2344 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2355 + start: + character: 0 + line: 2355 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2366 + start: + character: 0 + line: 2366 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2377 + start: + character: 0 + line: 2377 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2388 + start: + character: 0 + line: 2388 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2399 + start: + character: 0 + line: 2399 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2410 + start: + character: 0 + line: 2410 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2421 + start: + character: 0 + line: 2421 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2432 + start: + character: 0 + line: 2432 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2443 + start: + character: 0 + line: 2443 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2454 + start: + character: 0 + line: 2454 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2465 + start: + character: 0 + line: 2465 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2476 + start: + character: 0 + line: 2476 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2487 + start: + character: 0 + line: 2487 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2498 + start: + character: 0 + line: 2498 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2509 + start: + character: 0 + line: 2509 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2520 + start: + character: 0 + line: 2520 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2531 + start: + character: 0 + line: 2531 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2542 + start: + character: 0 + line: 2542 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2553 + start: + character: 0 + line: 2553 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2564 + start: + character: 0 + line: 2564 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2575 + start: + character: 0 + line: 2575 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2586 + start: + character: 0 + line: 2586 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2597 + start: + character: 0 + line: 2597 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2608 + start: + character: 0 + line: 2608 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2619 + start: + character: 0 + line: 2619 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2630 + start: + character: 0 + line: 2630 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2641 + start: + character: 0 + line: 2641 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2652 + start: + character: 0 + line: 2652 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2663 + start: + character: 0 + line: 2663 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2674 + start: + character: 0 + line: 2674 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2685 + start: + character: 0 + line: 2685 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2696 + start: + character: 0 + line: 2696 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2707 + start: + character: 0 + line: 2707 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2718 + start: + character: 0 + line: 2718 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2729 + start: + character: 0 + line: 2729 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2740 + start: + character: 0 + line: 2740 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2751 + start: + character: 0 + line: 2751 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2762 + start: + character: 0 + line: 2762 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2773 + start: + character: 0 + line: 2773 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2784 + start: + character: 0 + line: 2784 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2795 + start: + character: 0 + line: 2795 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2806 + start: + character: 0 + line: 2806 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2817 + start: + character: 0 + line: 2817 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2828 + start: + character: 0 + line: 2828 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2839 + start: + character: 0 + line: 2839 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2850 + start: + character: 0 + line: 2850 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2861 + start: + character: 0 + line: 2861 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2872 + start: + character: 0 + line: 2872 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2883 + start: + character: 0 + line: 2883 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2894 + start: + character: 0 + line: 2894 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2905 + start: + character: 0 + line: 2905 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2916 + start: + character: 0 + line: 2916 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2927 + start: + character: 0 + line: 2927 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2938 + start: + character: 0 + line: 2938 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2949 + start: + character: 0 + line: 2949 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2960 + start: + character: 0 + line: 2960 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2971 + start: + character: 0 + line: 2971 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2982 + start: + character: 0 + line: 2982 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2993 + start: + character: 0 + line: 2993 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3004 + start: + character: 0 + line: 3004 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3015 + start: + character: 0 + line: 3015 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3026 + start: + character: 0 + line: 3026 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3037 + start: + character: 0 + line: 3037 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3048 + start: + character: 0 + line: 3048 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3059 + start: + character: 0 + line: 3059 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3070 + start: + character: 0 + line: 3070 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3081 + start: + character: 0 + line: 3081 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3092 + start: + character: 0 + line: 3092 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3103 + start: + character: 0 + line: 3103 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3114 + start: + character: 0 + line: 3114 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3125 + start: + character: 0 + line: 3125 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3136 + start: + character: 0 + line: 3136 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3147 + start: + character: 0 + line: 3147 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3158 + start: + character: 0 + line: 3158 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3169 + start: + character: 0 + line: 3169 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3180 + start: + character: 0 + line: 3180 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3191 + start: + character: 0 + line: 3191 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3202 + start: + character: 0 + line: 3202 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3213 + start: + character: 0 + line: 3213 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3224 + start: + character: 0 + line: 3224 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3235 + start: + character: 0 + line: 3235 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3246 + start: + character: 0 + line: 3246 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3257 + start: + character: 0 + line: 3257 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3268 + start: + character: 0 + line: 3268 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3279 + start: + character: 0 + line: 3279 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3290 + start: + character: 0 + line: 3290 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3301 + start: + character: 0 + line: 3301 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3312 + start: + character: 0 + line: 3312 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3323 + start: + character: 0 + line: 3323 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3334 + start: + character: 0 + line: 3334 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3345 + start: + character: 0 + line: 3345 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3356 + start: + character: 0 + line: 3356 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3367 + start: + character: 0 + line: 3367 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3378 + start: + character: 0 + line: 3378 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3389 + start: + character: 0 + line: 3389 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3400 + start: + character: 0 + line: 3400 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3411 + start: + character: 0 + line: 3411 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3422 + start: + character: 0 + line: 3422 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3433 + start: + character: 0 + line: 3433 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3444 + start: + character: 0 + line: 3444 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3455 + start: + character: 0 + line: 3455 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3466 + start: + character: 0 + line: 3466 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3477 + start: + character: 0 + line: 3477 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3488 + start: + character: 0 + line: 3488 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3499 + start: + character: 0 + line: 3499 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3510 + start: + character: 0 + line: 3510 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3521 + start: + character: 0 + line: 3521 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3532 + start: + character: 0 + line: 3532 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3543 + start: + character: 0 + line: 3543 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3554 + start: + character: 0 + line: 3554 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3565 + start: + character: 0 + line: 3565 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3576 + start: + character: 0 + line: 3576 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3587 + start: + character: 0 + line: 3587 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3598 + start: + character: 0 + line: 3598 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3609 + start: + character: 0 + line: 3609 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3620 + start: + character: 0 + line: 3620 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3631 + start: + character: 0 + line: 3631 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3642 + start: + character: 0 + line: 3642 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3653 + start: + character: 0 + line: 3653 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3664 + start: + character: 0 + line: 3664 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3675 + start: + character: 0 + line: 3675 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3686 + start: + character: 0 + line: 3686 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3697 + start: + character: 0 + line: 3697 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3708 + start: + character: 0 + line: 3708 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3719 + start: + character: 0 + line: 3719 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3730 + start: + character: 0 + line: 3730 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3741 + start: + character: 0 + line: 3741 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3752 + start: + character: 0 + line: 3752 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3763 + start: + character: 0 + line: 3763 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3774 + start: + character: 0 + line: 3774 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3785 + start: + character: 0 + line: 3785 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3796 + start: + character: 0 + line: 3796 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3807 + start: + character: 0 + line: 3807 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3818 + start: + character: 0 + line: 3818 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3829 + start: + character: 0 + line: 3829 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3840 + start: + character: 0 + line: 3840 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3851 + start: + character: 0 + line: 3851 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3862 + start: + character: 0 + line: 3862 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3873 + start: + character: 0 + line: 3873 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3884 + start: + character: 0 + line: 3884 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3895 + start: + character: 0 + line: 3895 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3906 + start: + character: 0 + line: 3906 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3917 + start: + character: 0 + line: 3917 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3928 + start: + character: 0 + line: 3928 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3939 + start: + character: 0 + line: 3939 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3950 + start: + character: 0 + line: 3950 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3961 + start: + character: 0 + line: 3961 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3972 + start: + character: 0 + line: 3972 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3983 + start: + character: 0 + line: 3983 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3994 + start: + character: 0 + line: 3994 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4005 + start: + character: 0 + line: 4005 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4016 + start: + character: 0 + line: 4016 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4027 + start: + character: 0 + line: 4027 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4038 + start: + character: 0 + line: 4038 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4049 + start: + character: 0 + line: 4049 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4060 + start: + character: 0 + line: 4060 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4071 + start: + character: 0 + line: 4071 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4082 + start: + character: 0 + line: 4082 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4093 + start: + character: 0 + line: 4093 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4104 + start: + character: 0 + line: 4104 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4115 + start: + character: 0 + line: 4115 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4126 + start: + character: 0 + line: 4126 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4137 + start: + character: 0 + line: 4137 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4148 + start: + character: 0 + line: 4148 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4159 + start: + character: 0 + line: 4159 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4170 + start: + character: 0 + line: 4170 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4181 + start: + character: 0 + line: 4181 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4192 + start: + character: 0 + line: 4192 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4203 + start: + character: 0 + line: 4203 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4214 + start: + character: 0 + line: 4214 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4225 + start: + character: 0 + line: 4225 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4236 + start: + character: 0 + line: 4236 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4247 + start: + character: 0 + line: 4247 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4258 + start: + character: 0 + line: 4258 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4269 + start: + character: 0 + line: 4269 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4280 + start: + character: 0 + line: 4280 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4291 + start: + character: 0 + line: 4291 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4302 + start: + character: 0 + line: 4302 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4313 + start: + character: 0 + line: 4313 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4324 + start: + character: 0 + line: 4324 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4335 + start: + character: 0 + line: 4335 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4346 + start: + character: 0 + line: 4346 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4357 + start: + character: 0 + line: 4357 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4368 + start: + character: 0 + line: 4368 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4379 + start: + character: 0 + line: 4379 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4390 + start: + character: 0 + line: 4390 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4401 + start: + character: 0 + line: 4401 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4412 + start: + character: 0 + line: 4412 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4423 + start: + character: 0 + line: 4423 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4434 + start: + character: 0 + line: 4434 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4445 + start: + character: 0 + line: 4445 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4456 + start: + character: 0 + line: 4456 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4467 + start: + character: 0 + line: 4467 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4478 + start: + character: 0 + line: 4478 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4489 + start: + character: 0 + line: 4489 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4500 + start: + character: 0 + line: 4500 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4511 + start: + character: 0 + line: 4511 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4522 + start: + character: 0 + line: 4522 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4533 + start: + character: 0 + line: 4533 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4544 + start: + character: 0 + line: 4544 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4555 + start: + character: 0 + line: 4555 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4566 + start: + character: 0 + line: 4566 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4577 + start: + character: 0 + line: 4577 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4588 + start: + character: 0 + line: 4588 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4599 + start: + character: 0 + line: 4599 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4610 + start: + character: 0 + line: 4610 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 111 + start: + character: 0 + line: 111 + uri: very_big_file.robot + name: Testcase 10 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 122 + start: + character: 0 + line: 122 + uri: very_big_file.robot + name: Testcase 11 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 133 + start: + character: 0 + line: 133 + uri: very_big_file.robot + name: Testcase 12 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 144 + start: + character: 0 + line: 144 + uri: very_big_file.robot + name: Testcase 13 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 155 + start: + character: 0 + line: 155 + uri: very_big_file.robot + name: Testcase 14 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 166 + start: + character: 0 + line: 166 + uri: very_big_file.robot + name: Testcase 15 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 177 + start: + character: 0 + line: 177 + uri: very_big_file.robot + name: Testcase 16 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 188 + start: + character: 0 + line: 188 + uri: very_big_file.robot + name: Testcase 17 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 199 + start: + character: 0 + line: 199 + uri: very_big_file.robot + name: Testcase 18 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 210 + start: + character: 0 + line: 210 + uri: very_big_file.robot + name: Testcase 19 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 23 + start: + character: 0 + line: 23 + uri: very_big_file.robot + name: Testcase 2 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 221 + start: + character: 0 + line: 221 + uri: very_big_file.robot + name: Testcase 20 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 232 + start: + character: 0 + line: 232 + uri: very_big_file.robot + name: Testcase 21 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 243 + start: + character: 0 + line: 243 + uri: very_big_file.robot + name: Testcase 22 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 254 + start: + character: 0 + line: 254 + uri: very_big_file.robot + name: Testcase 23 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 265 + start: + character: 0 + line: 265 + uri: very_big_file.robot + name: Testcase 24 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 276 + start: + character: 0 + line: 276 + uri: very_big_file.robot + name: Testcase 25 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 287 + start: + character: 0 + line: 287 + uri: very_big_file.robot + name: Testcase 26 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 298 + start: + character: 0 + line: 298 + uri: very_big_file.robot + name: Testcase 27 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 309 + start: + character: 0 + line: 309 + uri: very_big_file.robot + name: Testcase 28 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 320 + start: + character: 0 + line: 320 + uri: very_big_file.robot + name: Testcase 29 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 34 + start: + character: 0 + line: 34 + uri: very_big_file.robot + name: Testcase 3 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 331 + start: + character: 0 + line: 331 + uri: very_big_file.robot + name: Testcase 30 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 342 + start: + character: 0 + line: 342 + uri: very_big_file.robot + name: Testcase 31 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 353 + start: + character: 0 + line: 353 + uri: very_big_file.robot + name: Testcase 32 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 364 + start: + character: 0 + line: 364 + uri: very_big_file.robot + name: Testcase 33 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 375 + start: + character: 0 + line: 375 + uri: very_big_file.robot + name: Testcase 34 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 386 + start: + character: 0 + line: 386 + uri: very_big_file.robot + name: Testcase 35 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 397 + start: + character: 0 + line: 397 + uri: very_big_file.robot + name: Testcase 36 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 408 + start: + character: 0 + line: 408 + uri: very_big_file.robot + name: Testcase 37 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 419 + start: + character: 0 + line: 419 + uri: very_big_file.robot + name: Testcase 38 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 430 + start: + character: 0 + line: 430 + uri: very_big_file.robot + name: Testcase 39 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 45 + start: + character: 0 + line: 45 + uri: very_big_file.robot + name: Testcase 4 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 441 + start: + character: 0 + line: 441 + uri: very_big_file.robot + name: Testcase 40 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 452 + start: + character: 0 + line: 452 + uri: very_big_file.robot + name: Testcase 41 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 463 + start: + character: 0 + line: 463 + uri: very_big_file.robot + name: Testcase 42 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 474 + start: + character: 0 + line: 474 + uri: very_big_file.robot + name: Testcase 43 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 485 + start: + character: 0 + line: 485 + uri: very_big_file.robot + name: Testcase 44 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 496 + start: + character: 0 + line: 496 + uri: very_big_file.robot + name: Testcase 45 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 507 + start: + character: 0 + line: 507 + uri: very_big_file.robot + name: Testcase 46 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 518 + start: + character: 0 + line: 518 + uri: very_big_file.robot + name: Testcase 47 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 529 + start: + character: 0 + line: 529 + uri: very_big_file.robot + name: Testcase 48 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 540 + start: + character: 0 + line: 540 + uri: very_big_file.robot + name: Testcase 49 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 56 + start: + character: 0 + line: 56 + uri: very_big_file.robot + name: Testcase 5 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 551 + start: + character: 0 + line: 551 + uri: very_big_file.robot + name: Testcase 50 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 562 + start: + character: 0 + line: 562 + uri: very_big_file.robot + name: Testcase 51 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 573 + start: + character: 0 + line: 573 + uri: very_big_file.robot + name: Testcase 52 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 584 + start: + character: 0 + line: 584 + uri: very_big_file.robot + name: Testcase 53 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 595 + start: + character: 0 + line: 595 + uri: very_big_file.robot + name: Testcase 54 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 606 + start: + character: 0 + line: 606 + uri: very_big_file.robot + name: Testcase 55 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 617 + start: + character: 0 + line: 617 + uri: very_big_file.robot + name: Testcase 56 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 628 + start: + character: 0 + line: 628 + uri: very_big_file.robot + name: Testcase 57 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 639 + start: + character: 0 + line: 639 + uri: very_big_file.robot + name: Testcase 58 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 650 + start: + character: 0 + line: 650 + uri: very_big_file.robot + name: Testcase 59 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 67 + start: + character: 0 + line: 67 + uri: very_big_file.robot + name: Testcase 6 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 661 + start: + character: 0 + line: 661 + uri: very_big_file.robot + name: Testcase 60 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 672 + start: + character: 0 + line: 672 + uri: very_big_file.robot + name: Testcase 61 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 683 + start: + character: 0 + line: 683 + uri: very_big_file.robot + name: Testcase 62 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 694 + start: + character: 0 + line: 694 + uri: very_big_file.robot + name: Testcase 63 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 78 + start: + character: 0 + line: 78 + uri: very_big_file.robot + name: Testcase 7 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 89 + start: + character: 0 + line: 89 + uri: very_big_file.robot + name: Testcase 8 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 100 + start: + character: 0 + line: 100 + uri: very_big_file.robot + name: Testcase 9 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 63 + line: 4627 + start: + character: 0 + line: 4627 + uri: very_big_file.robot + name: the Android ${name} is hiding in a futuristic city ${city_name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 70 + line: 4639 + start: + character: 0 + line: 4639 + uri: very_big_file.robot + name: the Android ${name} responds with a cryptic answer "${cryptic_answer}" + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 67 + line: 4651 + start: + character: 0 + line: 4651 + uri: very_big_file.robot + name: the Blade Runner ${name} decides whether to "${action}" the Android + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 75 + line: 4623 + start: + character: 0 + line: 4623 + uri: very_big_file.robot + name: the Blade Runner ${name} is on a mission to find a rogue Android Stan Riley + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 74 + line: 4635 + start: + character: 0 + line: 4635 + uri: very_big_file.robot + name: the Blade Runner asks the Android if it knows the meaning of "${question}" + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 64 + line: 4631 + start: + character: 0 + line: 4631 + uri: very_big_file.robot + name: the Blade Runner encounters the Android ${name} in a ${location} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 55 + line: 4647 + start: + character: 0 + line: 4647 + uri: very_big_file.robot + name: the Blade Runner performs a ${test} test on the Android + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 50 + line: 4643 + start: + character: 0 + line: 4643 + uri: very_big_file.robot + name: the Blade Runner suspects the Android is not human + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 50 + line: 4655 + start: + character: 0 + line: 4655 + uri: very_big_file.robot + name: the test confirms the Android ${name} is non-human + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out new file mode 100644 index 00000000..90632af9 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[as].out @@ -0,0 +1,7816 @@ +result: +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 17 + start: + character: 0 + line: 17 + uri: bddstyle.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 18 + start: + character: 0 + line: 18 + uri: bddstyle.robot + name: Testcase 2 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 19 + start: + character: 0 + line: 19 + uri: bddstyle.robot + name: Testcase 3 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 20 + start: + character: 0 + line: 20 + uri: bddstyle.robot + name: Testcase 4 + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 34 + line: 1 + start: + character: 0 + line: 1 + uri: bddstyle.robot + name: value of var <${input}> is present + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 51 + line: 3 + start: + character: 0 + line: 3 + uri: bddstyle.robot + name: value of var input is multiplied by "${multiplier}" + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 41 + line: 5 + start: + character: 0 + line: 5 + uri: bddstyle.robot + name: value of var result should be [${result}] + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 24 + start: + character: 0 + line: 24 + uri: code_action_show_documentation.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 115 + start: + character: 7 + line: 115 + uri: code_action_show_documentation.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 118 + start: + character: 0 + line: 118 + uri: code_action_show_documentation.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 38 + line: 101 + start: + character: 0 + line: 101 + uri: code_action_show_documentation.robot + name: add ${number:[0-9]+} coins to ${thing} + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 128 + start: + character: 0 + line: 128 + uri: code_action_show_documentation.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 123 + start: + character: 0 + line: 123 + uri: code_action_show_documentation.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 115 + start: + character: 0 + line: 115 + uri: code_action_show_documentation.robot + name: do add ${bananas} and to my bag + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 164 + start: + character: 32 + line: 164 + uri: document_highlight.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 169 + start: + character: 32 + line: 169 + uri: document_highlight.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 112 + start: + character: 0 + line: 112 + uri: document_highlight.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 155 + start: + character: 0 + line: 155 + uri: document_highlight.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 168 + start: + character: 0 + line: 168 + uri: document_highlight.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 38 + line: 149 + start: + character: 0 + line: 149 + uri: document_highlight.robot + name: add ${number:[0-9]+} coins to ${thing} + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 131 + start: + character: 0 + line: 131 + uri: document_highlight.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 121 + start: + character: 0 + line: 121 + uri: document_highlight.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 5 + start: + character: 0 + line: 5 + uri: duplicated.resource + name: A Resource Keyword A + tags: null +- !WorkspaceSymbol + container_name: duplicated + data: null + kind: 12 + location: + range: + end: + character: 20 + line: 5 + start: + character: 0 + line: 5 + uri: duplicated.resource + name: a resource keyword B + tags: null +- !WorkspaceSymbol + container_name: embedded_args + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 1 + start: + character: 3 + line: 1 + uri: embedded_args.resource + name: ${task} + tags: null +- !WorkspaceSymbol + container_name: embedded_args + data: null + kind: 12 + location: + range: + end: + character: 24 + line: 1 + start: + character: 0 + line: 1 + uri: embedded_args.resource + name: do ${task} with ${thing} + tags: null +- !WorkspaceSymbol + container_name: embedded_keywords + data: null + kind: 12 + location: + range: + end: + character: 43 + line: 9 + start: + character: 0 + line: 9 + uri: embedded_keywords.robot + name: do ${something} with ${thing} and this data + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 4 + start: + character: 0 + line: 4 + uri: firstresource.resource + name: ${A_VAR_FROM_RESOURE} + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 13 + location: + range: + end: + character: 61 + line: 23 + start: + character: 46 + line: 23 + uri: firstresource.resource + name: ${a_short_name} + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 19 + line: 22 + start: + character: 0 + line: 22 + uri: firstresource.resource + name: a keyword with args + tags: null +- !WorkspaceSymbol + container_name: firstresource + data: null + kind: 12 + location: + range: + end: + character: 26 + line: 7 + start: + character: 0 + line: 7 + uri: firstresource.resource + name: do something in a resource + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 13 + line: 52 + start: + character: 0 + line: 52 + uri: foldingrange.robot + name: IF statements + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 92 + start: + character: 0 + line: 92 + uri: foldingrange.robot + name: TRY statements + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 16 + line: 80 + start: + character: 0 + line: 80 + uri: foldingrange.robot + name: WHILE statements + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 213 + start: + character: 32 + line: 213 + uri: goto.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 218 + start: + character: 32 + line: 218 + uri: goto.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 154 + start: + character: 0 + line: 154 + uri: goto.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 204 + start: + character: 0 + line: 204 + uri: goto.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 217 + start: + character: 0 + line: 217 + uri: goto.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 16 + line: 149 + start: + character: 0 + line: 149 + uri: goto.robot + name: a simple keyword + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 16 + line: 98 + start: + character: 0 + line: 98 + uri: goto.robot + name: a templated Test + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 186 + start: + character: 0 + line: 186 + uri: goto.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 163 + start: + character: 0 + line: 163 + uri: goto.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 32 + line: 173 + start: + character: 0 + line: 173 + uri: goto.robot + name: just another keyword with params + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 266 + start: + character: 0 + line: 266 + uri: hover.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 16 + line: 258 + start: + character: 0 + line: 258 + uri: hover.robot + name: a simple keyword + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 285 + start: + character: 0 + line: 285 + uri: hover.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 275 + start: + character: 0 + line: 275 + uri: hover.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: indexed_variables + data: null + kind: 13 + location: + range: + end: + character: 24 + line: 1 + start: + character: 0 + line: 1 + uri: indexed_variables.robot + name: '@{A_LIST}' + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 20 + line: 26 + start: + character: 0 + line: 26 + uri: references.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 13 + location: + range: + end: + character: 17 + line: 145 + start: + character: 7 + line: 145 + uri: references.robot + name: ${bananas} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 57 + line: 234 + start: + character: 0 + line: 234 + uri: references.robot + name: a keyword with a while loop and variable in while options + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 21 + line: 149 + start: + character: 0 + line: 149 + uri: references.robot + name: a keyword with params + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 33 + line: 220 + start: + character: 0 + line: 220 + uri: references.robot + name: a keyword with python expressions + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 178 + start: + character: 0 + line: 178 + uri: references.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 191 + start: + character: 0 + line: 191 + uri: references.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 44 + line: 256 + start: + character: 0 + line: 256 + uri: references.robot + name: a keyword with while and expression variable + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 38 + line: 125 + start: + character: 0 + line: 125 + uri: references.robot + name: add ${number:[0-9]+} coins to ${thing} + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 168 + start: + character: 0 + line: 168 + uri: references.robot + name: again a keyword with params + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 27 + line: 158 + start: + character: 0 + line: 158 + uri: references.robot + name: another keyword with params + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 145 + start: + character: 0 + line: 145 + uri: references.robot + name: do add ${bananas} and to my bag + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 40 + line: 4 + start: + character: 0 + line: 4 + uri: sematic_tokenizing.robot + name: Continue when iteration limit is reached + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 24 + line: 10 + start: + character: 0 + line: 10 + uri: sematic_tokenizing.robot + name: Limit as iteration count + tags: null +- !WorkspaceSymbol + container_name: sematic_tokenizing + data: null + kind: 5 + location: + range: + end: + character: 27 + line: 20 + start: + character: 0 + line: 20 + uri: sematic_tokenizing.robot + name: some embedded args keywords + tags: null +- !WorkspaceSymbol + container_name: some_tasks + data: null + kind: 5 + location: + range: + end: + character: 13 + line: 1 + start: + character: 0 + line: 1 + uri: some_tasks.robot + name: a simple task + tags: null +- !WorkspaceSymbol + container_name: some_tasks + data: null + kind: 5 + location: + range: + end: + character: 19 + line: 4 + start: + character: 0 + line: 4 + uri: some_tasks.robot + name: another simple task + tags: null +- !WorkspaceSymbol + container_name: sometasks + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: sometasks.robot + name: first task + tags: null +- !WorkspaceSymbol + container_name: sometasks + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 4 + start: + character: 0 + line: 4 + uri: sometasks.robot + name: second task + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 12 + location: + range: + end: + character: 10 + line: 39 + start: + character: 0 + line: 39 + uri: symbols.robot + name: a keywords + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 5 + location: + range: + end: + character: 20 + line: 63 + start: + character: 0 + line: 63 + uri: symbols.robot + name: vars with equal sign + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 12 + location: + range: + end: + character: 47 + line: 85 + start: + character: 0 + line: 85 + uri: templates.robot + name: check that ${a} plus ${b:[a-c]+} is ${expected} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 23 + line: 5 + start: + character: 0 + line: 5 + uri: templates2.robot + name: ${VALID PASSWORD} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 22 + line: 4 + start: + character: 0 + line: 4 + uri: templates2.robot + name: ${VALID USER} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 13 + location: + range: + end: + character: 45 + line: 49 + start: + character: 34 + line: 49 + uri: templates2.robot + name: ${password} + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 13 + start: + character: 0 + line: 13 + uri: templates2.robot + name: Empty Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 28 + line: 14 + start: + character: 0 + line: 14 + uri: templates2.robot + name: Empty User Name and Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 16 + line: 10 + start: + character: 0 + line: 10 + uri: templates2.robot + name: Invalid Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 17 + line: 9 + start: + character: 0 + line: 9 + uri: templates2.robot + name: Invalid User Name + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 5 + location: + range: + end: + character: 30 + line: 11 + start: + character: 0 + line: 11 + uri: templates2.robot + name: Invalid User Name and Password + tags: null +- !WorkspaceSymbol + container_name: templates2 + data: null + kind: 12 + location: + range: + end: + character: 42 + line: 48 + start: + character: 0 + line: 48 + uri: templates2.robot + name: Login with invalid credentials should fail + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 13 + location: + range: + end: + character: 10 + line: 64 + start: + character: 4 + line: 64 + uri: variables.robot + name: ${asd} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 31 + line: 180 + start: + character: 0 + line: 180 + uri: variables.robot + name: a keyword with kwonly separator + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 173 + start: + character: 0 + line: 173 + uri: variables.robot + name: check that ${a:[0-9\ ]*} plus ${b} is ${expected} + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 15 + line: 154 + start: + character: 0 + line: 154 + uri: variables.robot + name: environmentvars + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 15 + line: 157 + start: + character: 0 + line: 157 + uri: variables.robot + name: named arguments + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 39 + start: + character: 32 + line: 39 + uri: vartest.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 13 + location: + range: + end: + character: 47 + line: 45 + start: + character: 32 + line: 45 + uri: vartest.robot + name: ${a_second_arg} + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 12 + location: + range: + end: + character: 49 + line: 29 + start: + character: 0 + line: 29 + uri: vartest.robot + name: a keyword with variables in doc, timeout and tags + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 43 + start: + character: 0 + line: 43 + uri: vartest.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 22 + line: 14 + start: + character: 0 + line: 14 + uri: vartest.robot + name: var with invalid scope + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 5 + location: + range: + end: + character: 14 + line: 7 + start: + character: 0 + line: 7 + uri: vartest.robot + name: var with scope + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 71 + line: 8 + start: + character: 0 + line: 8 + uri: very_big_file.robot + name: ${cryptic_answer} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 13 + location: + range: + end: + character: 69 + line: 4639 + start: + character: 52 + line: 4639 + uri: very_big_file.robot + name: ${cryptic_answer} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 12 + start: + character: 0 + line: 12 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 705 + start: + character: 0 + line: 705 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 716 + start: + character: 0 + line: 716 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 727 + start: + character: 0 + line: 727 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 738 + start: + character: 0 + line: 738 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 749 + start: + character: 0 + line: 749 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 760 + start: + character: 0 + line: 760 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 771 + start: + character: 0 + line: 771 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 782 + start: + character: 0 + line: 782 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 793 + start: + character: 0 + line: 793 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 804 + start: + character: 0 + line: 804 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 815 + start: + character: 0 + line: 815 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 826 + start: + character: 0 + line: 826 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 837 + start: + character: 0 + line: 837 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 848 + start: + character: 0 + line: 848 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 859 + start: + character: 0 + line: 859 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 870 + start: + character: 0 + line: 870 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 881 + start: + character: 0 + line: 881 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 892 + start: + character: 0 + line: 892 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 903 + start: + character: 0 + line: 903 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 914 + start: + character: 0 + line: 914 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 925 + start: + character: 0 + line: 925 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 936 + start: + character: 0 + line: 936 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 947 + start: + character: 0 + line: 947 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 958 + start: + character: 0 + line: 958 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 969 + start: + character: 0 + line: 969 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 980 + start: + character: 0 + line: 980 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 991 + start: + character: 0 + line: 991 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1002 + start: + character: 0 + line: 1002 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1013 + start: + character: 0 + line: 1013 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1024 + start: + character: 0 + line: 1024 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1035 + start: + character: 0 + line: 1035 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1046 + start: + character: 0 + line: 1046 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1057 + start: + character: 0 + line: 1057 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1068 + start: + character: 0 + line: 1068 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1079 + start: + character: 0 + line: 1079 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1090 + start: + character: 0 + line: 1090 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1101 + start: + character: 0 + line: 1101 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1112 + start: + character: 0 + line: 1112 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1123 + start: + character: 0 + line: 1123 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1134 + start: + character: 0 + line: 1134 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1145 + start: + character: 0 + line: 1145 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1156 + start: + character: 0 + line: 1156 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1167 + start: + character: 0 + line: 1167 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1178 + start: + character: 0 + line: 1178 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1189 + start: + character: 0 + line: 1189 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1200 + start: + character: 0 + line: 1200 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1211 + start: + character: 0 + line: 1211 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1222 + start: + character: 0 + line: 1222 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1233 + start: + character: 0 + line: 1233 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1244 + start: + character: 0 + line: 1244 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1255 + start: + character: 0 + line: 1255 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1266 + start: + character: 0 + line: 1266 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1277 + start: + character: 0 + line: 1277 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1288 + start: + character: 0 + line: 1288 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1299 + start: + character: 0 + line: 1299 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1310 + start: + character: 0 + line: 1310 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1321 + start: + character: 0 + line: 1321 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1332 + start: + character: 0 + line: 1332 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1343 + start: + character: 0 + line: 1343 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1354 + start: + character: 0 + line: 1354 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1365 + start: + character: 0 + line: 1365 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1376 + start: + character: 0 + line: 1376 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1387 + start: + character: 0 + line: 1387 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1398 + start: + character: 0 + line: 1398 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1409 + start: + character: 0 + line: 1409 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1420 + start: + character: 0 + line: 1420 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1431 + start: + character: 0 + line: 1431 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1442 + start: + character: 0 + line: 1442 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1453 + start: + character: 0 + line: 1453 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1464 + start: + character: 0 + line: 1464 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1475 + start: + character: 0 + line: 1475 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1486 + start: + character: 0 + line: 1486 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1497 + start: + character: 0 + line: 1497 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1508 + start: + character: 0 + line: 1508 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1519 + start: + character: 0 + line: 1519 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1530 + start: + character: 0 + line: 1530 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1541 + start: + character: 0 + line: 1541 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1552 + start: + character: 0 + line: 1552 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1563 + start: + character: 0 + line: 1563 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1574 + start: + character: 0 + line: 1574 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1585 + start: + character: 0 + line: 1585 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1596 + start: + character: 0 + line: 1596 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1607 + start: + character: 0 + line: 1607 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1618 + start: + character: 0 + line: 1618 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1629 + start: + character: 0 + line: 1629 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1640 + start: + character: 0 + line: 1640 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1651 + start: + character: 0 + line: 1651 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1662 + start: + character: 0 + line: 1662 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1673 + start: + character: 0 + line: 1673 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1684 + start: + character: 0 + line: 1684 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1695 + start: + character: 0 + line: 1695 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1706 + start: + character: 0 + line: 1706 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1717 + start: + character: 0 + line: 1717 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1728 + start: + character: 0 + line: 1728 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1739 + start: + character: 0 + line: 1739 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1750 + start: + character: 0 + line: 1750 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1761 + start: + character: 0 + line: 1761 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1772 + start: + character: 0 + line: 1772 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1783 + start: + character: 0 + line: 1783 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1794 + start: + character: 0 + line: 1794 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1805 + start: + character: 0 + line: 1805 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1816 + start: + character: 0 + line: 1816 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1827 + start: + character: 0 + line: 1827 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1838 + start: + character: 0 + line: 1838 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1849 + start: + character: 0 + line: 1849 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1860 + start: + character: 0 + line: 1860 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1871 + start: + character: 0 + line: 1871 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1882 + start: + character: 0 + line: 1882 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1893 + start: + character: 0 + line: 1893 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1904 + start: + character: 0 + line: 1904 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1915 + start: + character: 0 + line: 1915 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1926 + start: + character: 0 + line: 1926 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1937 + start: + character: 0 + line: 1937 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1948 + start: + character: 0 + line: 1948 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1959 + start: + character: 0 + line: 1959 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1970 + start: + character: 0 + line: 1970 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1981 + start: + character: 0 + line: 1981 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1992 + start: + character: 0 + line: 1992 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2003 + start: + character: 0 + line: 2003 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2014 + start: + character: 0 + line: 2014 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2025 + start: + character: 0 + line: 2025 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2036 + start: + character: 0 + line: 2036 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2047 + start: + character: 0 + line: 2047 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2058 + start: + character: 0 + line: 2058 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2069 + start: + character: 0 + line: 2069 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2080 + start: + character: 0 + line: 2080 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2091 + start: + character: 0 + line: 2091 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2102 + start: + character: 0 + line: 2102 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2113 + start: + character: 0 + line: 2113 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2124 + start: + character: 0 + line: 2124 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2135 + start: + character: 0 + line: 2135 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2146 + start: + character: 0 + line: 2146 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2157 + start: + character: 0 + line: 2157 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2168 + start: + character: 0 + line: 2168 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2179 + start: + character: 0 + line: 2179 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2190 + start: + character: 0 + line: 2190 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2201 + start: + character: 0 + line: 2201 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2212 + start: + character: 0 + line: 2212 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2223 + start: + character: 0 + line: 2223 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2234 + start: + character: 0 + line: 2234 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2245 + start: + character: 0 + line: 2245 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2256 + start: + character: 0 + line: 2256 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2267 + start: + character: 0 + line: 2267 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2278 + start: + character: 0 + line: 2278 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2289 + start: + character: 0 + line: 2289 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2300 + start: + character: 0 + line: 2300 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2311 + start: + character: 0 + line: 2311 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2322 + start: + character: 0 + line: 2322 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2333 + start: + character: 0 + line: 2333 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2344 + start: + character: 0 + line: 2344 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2355 + start: + character: 0 + line: 2355 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2366 + start: + character: 0 + line: 2366 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2377 + start: + character: 0 + line: 2377 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2388 + start: + character: 0 + line: 2388 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2399 + start: + character: 0 + line: 2399 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2410 + start: + character: 0 + line: 2410 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2421 + start: + character: 0 + line: 2421 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2432 + start: + character: 0 + line: 2432 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2443 + start: + character: 0 + line: 2443 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2454 + start: + character: 0 + line: 2454 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2465 + start: + character: 0 + line: 2465 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2476 + start: + character: 0 + line: 2476 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2487 + start: + character: 0 + line: 2487 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2498 + start: + character: 0 + line: 2498 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2509 + start: + character: 0 + line: 2509 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2520 + start: + character: 0 + line: 2520 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2531 + start: + character: 0 + line: 2531 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2542 + start: + character: 0 + line: 2542 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2553 + start: + character: 0 + line: 2553 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2564 + start: + character: 0 + line: 2564 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2575 + start: + character: 0 + line: 2575 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2586 + start: + character: 0 + line: 2586 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2597 + start: + character: 0 + line: 2597 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2608 + start: + character: 0 + line: 2608 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2619 + start: + character: 0 + line: 2619 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2630 + start: + character: 0 + line: 2630 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2641 + start: + character: 0 + line: 2641 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2652 + start: + character: 0 + line: 2652 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2663 + start: + character: 0 + line: 2663 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2674 + start: + character: 0 + line: 2674 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2685 + start: + character: 0 + line: 2685 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2696 + start: + character: 0 + line: 2696 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2707 + start: + character: 0 + line: 2707 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2718 + start: + character: 0 + line: 2718 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2729 + start: + character: 0 + line: 2729 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2740 + start: + character: 0 + line: 2740 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2751 + start: + character: 0 + line: 2751 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2762 + start: + character: 0 + line: 2762 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2773 + start: + character: 0 + line: 2773 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2784 + start: + character: 0 + line: 2784 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2795 + start: + character: 0 + line: 2795 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2806 + start: + character: 0 + line: 2806 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2817 + start: + character: 0 + line: 2817 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2828 + start: + character: 0 + line: 2828 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2839 + start: + character: 0 + line: 2839 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2850 + start: + character: 0 + line: 2850 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2861 + start: + character: 0 + line: 2861 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2872 + start: + character: 0 + line: 2872 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2883 + start: + character: 0 + line: 2883 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2894 + start: + character: 0 + line: 2894 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2905 + start: + character: 0 + line: 2905 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2916 + start: + character: 0 + line: 2916 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2927 + start: + character: 0 + line: 2927 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2938 + start: + character: 0 + line: 2938 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2949 + start: + character: 0 + line: 2949 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2960 + start: + character: 0 + line: 2960 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2971 + start: + character: 0 + line: 2971 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2982 + start: + character: 0 + line: 2982 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 2993 + start: + character: 0 + line: 2993 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3004 + start: + character: 0 + line: 3004 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3015 + start: + character: 0 + line: 3015 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3026 + start: + character: 0 + line: 3026 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3037 + start: + character: 0 + line: 3037 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3048 + start: + character: 0 + line: 3048 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3059 + start: + character: 0 + line: 3059 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3070 + start: + character: 0 + line: 3070 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3081 + start: + character: 0 + line: 3081 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3092 + start: + character: 0 + line: 3092 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3103 + start: + character: 0 + line: 3103 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3114 + start: + character: 0 + line: 3114 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3125 + start: + character: 0 + line: 3125 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3136 + start: + character: 0 + line: 3136 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3147 + start: + character: 0 + line: 3147 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3158 + start: + character: 0 + line: 3158 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3169 + start: + character: 0 + line: 3169 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3180 + start: + character: 0 + line: 3180 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3191 + start: + character: 0 + line: 3191 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3202 + start: + character: 0 + line: 3202 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3213 + start: + character: 0 + line: 3213 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3224 + start: + character: 0 + line: 3224 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3235 + start: + character: 0 + line: 3235 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3246 + start: + character: 0 + line: 3246 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3257 + start: + character: 0 + line: 3257 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3268 + start: + character: 0 + line: 3268 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3279 + start: + character: 0 + line: 3279 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3290 + start: + character: 0 + line: 3290 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3301 + start: + character: 0 + line: 3301 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3312 + start: + character: 0 + line: 3312 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3323 + start: + character: 0 + line: 3323 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3334 + start: + character: 0 + line: 3334 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3345 + start: + character: 0 + line: 3345 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3356 + start: + character: 0 + line: 3356 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3367 + start: + character: 0 + line: 3367 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3378 + start: + character: 0 + line: 3378 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3389 + start: + character: 0 + line: 3389 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3400 + start: + character: 0 + line: 3400 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3411 + start: + character: 0 + line: 3411 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3422 + start: + character: 0 + line: 3422 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3433 + start: + character: 0 + line: 3433 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3444 + start: + character: 0 + line: 3444 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3455 + start: + character: 0 + line: 3455 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3466 + start: + character: 0 + line: 3466 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3477 + start: + character: 0 + line: 3477 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3488 + start: + character: 0 + line: 3488 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3499 + start: + character: 0 + line: 3499 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3510 + start: + character: 0 + line: 3510 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3521 + start: + character: 0 + line: 3521 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3532 + start: + character: 0 + line: 3532 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3543 + start: + character: 0 + line: 3543 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3554 + start: + character: 0 + line: 3554 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3565 + start: + character: 0 + line: 3565 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3576 + start: + character: 0 + line: 3576 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3587 + start: + character: 0 + line: 3587 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3598 + start: + character: 0 + line: 3598 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3609 + start: + character: 0 + line: 3609 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3620 + start: + character: 0 + line: 3620 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3631 + start: + character: 0 + line: 3631 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3642 + start: + character: 0 + line: 3642 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3653 + start: + character: 0 + line: 3653 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3664 + start: + character: 0 + line: 3664 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3675 + start: + character: 0 + line: 3675 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3686 + start: + character: 0 + line: 3686 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3697 + start: + character: 0 + line: 3697 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3708 + start: + character: 0 + line: 3708 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3719 + start: + character: 0 + line: 3719 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3730 + start: + character: 0 + line: 3730 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3741 + start: + character: 0 + line: 3741 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3752 + start: + character: 0 + line: 3752 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3763 + start: + character: 0 + line: 3763 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3774 + start: + character: 0 + line: 3774 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3785 + start: + character: 0 + line: 3785 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3796 + start: + character: 0 + line: 3796 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3807 + start: + character: 0 + line: 3807 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3818 + start: + character: 0 + line: 3818 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3829 + start: + character: 0 + line: 3829 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3840 + start: + character: 0 + line: 3840 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3851 + start: + character: 0 + line: 3851 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3862 + start: + character: 0 + line: 3862 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3873 + start: + character: 0 + line: 3873 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3884 + start: + character: 0 + line: 3884 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3895 + start: + character: 0 + line: 3895 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3906 + start: + character: 0 + line: 3906 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3917 + start: + character: 0 + line: 3917 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3928 + start: + character: 0 + line: 3928 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3939 + start: + character: 0 + line: 3939 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3950 + start: + character: 0 + line: 3950 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3961 + start: + character: 0 + line: 3961 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3972 + start: + character: 0 + line: 3972 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3983 + start: + character: 0 + line: 3983 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 3994 + start: + character: 0 + line: 3994 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4005 + start: + character: 0 + line: 4005 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4016 + start: + character: 0 + line: 4016 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4027 + start: + character: 0 + line: 4027 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4038 + start: + character: 0 + line: 4038 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4049 + start: + character: 0 + line: 4049 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4060 + start: + character: 0 + line: 4060 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4071 + start: + character: 0 + line: 4071 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4082 + start: + character: 0 + line: 4082 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4093 + start: + character: 0 + line: 4093 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4104 + start: + character: 0 + line: 4104 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4115 + start: + character: 0 + line: 4115 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4126 + start: + character: 0 + line: 4126 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4137 + start: + character: 0 + line: 4137 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4148 + start: + character: 0 + line: 4148 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4159 + start: + character: 0 + line: 4159 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4170 + start: + character: 0 + line: 4170 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4181 + start: + character: 0 + line: 4181 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4192 + start: + character: 0 + line: 4192 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4203 + start: + character: 0 + line: 4203 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4214 + start: + character: 0 + line: 4214 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4225 + start: + character: 0 + line: 4225 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4236 + start: + character: 0 + line: 4236 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4247 + start: + character: 0 + line: 4247 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4258 + start: + character: 0 + line: 4258 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4269 + start: + character: 0 + line: 4269 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4280 + start: + character: 0 + line: 4280 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4291 + start: + character: 0 + line: 4291 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4302 + start: + character: 0 + line: 4302 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4313 + start: + character: 0 + line: 4313 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4324 + start: + character: 0 + line: 4324 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4335 + start: + character: 0 + line: 4335 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4346 + start: + character: 0 + line: 4346 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4357 + start: + character: 0 + line: 4357 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4368 + start: + character: 0 + line: 4368 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4379 + start: + character: 0 + line: 4379 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4390 + start: + character: 0 + line: 4390 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4401 + start: + character: 0 + line: 4401 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4412 + start: + character: 0 + line: 4412 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4423 + start: + character: 0 + line: 4423 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4434 + start: + character: 0 + line: 4434 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4445 + start: + character: 0 + line: 4445 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4456 + start: + character: 0 + line: 4456 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4467 + start: + character: 0 + line: 4467 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4478 + start: + character: 0 + line: 4478 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4489 + start: + character: 0 + line: 4489 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4500 + start: + character: 0 + line: 4500 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4511 + start: + character: 0 + line: 4511 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4522 + start: + character: 0 + line: 4522 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4533 + start: + character: 0 + line: 4533 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4544 + start: + character: 0 + line: 4544 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4555 + start: + character: 0 + line: 4555 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4566 + start: + character: 0 + line: 4566 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4577 + start: + character: 0 + line: 4577 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4588 + start: + character: 0 + line: 4588 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4599 + start: + character: 0 + line: 4599 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 4610 + start: + character: 0 + line: 4610 + uri: very_big_file.robot + name: Testcase 1 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 111 + start: + character: 0 + line: 111 + uri: very_big_file.robot + name: Testcase 10 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 122 + start: + character: 0 + line: 122 + uri: very_big_file.robot + name: Testcase 11 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 133 + start: + character: 0 + line: 133 + uri: very_big_file.robot + name: Testcase 12 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 144 + start: + character: 0 + line: 144 + uri: very_big_file.robot + name: Testcase 13 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 155 + start: + character: 0 + line: 155 + uri: very_big_file.robot + name: Testcase 14 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 166 + start: + character: 0 + line: 166 + uri: very_big_file.robot + name: Testcase 15 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 177 + start: + character: 0 + line: 177 + uri: very_big_file.robot + name: Testcase 16 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 188 + start: + character: 0 + line: 188 + uri: very_big_file.robot + name: Testcase 17 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 199 + start: + character: 0 + line: 199 + uri: very_big_file.robot + name: Testcase 18 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 210 + start: + character: 0 + line: 210 + uri: very_big_file.robot + name: Testcase 19 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 23 + start: + character: 0 + line: 23 + uri: very_big_file.robot + name: Testcase 2 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 221 + start: + character: 0 + line: 221 + uri: very_big_file.robot + name: Testcase 20 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 232 + start: + character: 0 + line: 232 + uri: very_big_file.robot + name: Testcase 21 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 243 + start: + character: 0 + line: 243 + uri: very_big_file.robot + name: Testcase 22 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 254 + start: + character: 0 + line: 254 + uri: very_big_file.robot + name: Testcase 23 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 265 + start: + character: 0 + line: 265 + uri: very_big_file.robot + name: Testcase 24 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 276 + start: + character: 0 + line: 276 + uri: very_big_file.robot + name: Testcase 25 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 287 + start: + character: 0 + line: 287 + uri: very_big_file.robot + name: Testcase 26 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 298 + start: + character: 0 + line: 298 + uri: very_big_file.robot + name: Testcase 27 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 309 + start: + character: 0 + line: 309 + uri: very_big_file.robot + name: Testcase 28 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 320 + start: + character: 0 + line: 320 + uri: very_big_file.robot + name: Testcase 29 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 34 + start: + character: 0 + line: 34 + uri: very_big_file.robot + name: Testcase 3 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 331 + start: + character: 0 + line: 331 + uri: very_big_file.robot + name: Testcase 30 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 342 + start: + character: 0 + line: 342 + uri: very_big_file.robot + name: Testcase 31 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 353 + start: + character: 0 + line: 353 + uri: very_big_file.robot + name: Testcase 32 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 364 + start: + character: 0 + line: 364 + uri: very_big_file.robot + name: Testcase 33 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 375 + start: + character: 0 + line: 375 + uri: very_big_file.robot + name: Testcase 34 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 386 + start: + character: 0 + line: 386 + uri: very_big_file.robot + name: Testcase 35 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 397 + start: + character: 0 + line: 397 + uri: very_big_file.robot + name: Testcase 36 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 408 + start: + character: 0 + line: 408 + uri: very_big_file.robot + name: Testcase 37 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 419 + start: + character: 0 + line: 419 + uri: very_big_file.robot + name: Testcase 38 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 430 + start: + character: 0 + line: 430 + uri: very_big_file.robot + name: Testcase 39 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 45 + start: + character: 0 + line: 45 + uri: very_big_file.robot + name: Testcase 4 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 441 + start: + character: 0 + line: 441 + uri: very_big_file.robot + name: Testcase 40 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 452 + start: + character: 0 + line: 452 + uri: very_big_file.robot + name: Testcase 41 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 463 + start: + character: 0 + line: 463 + uri: very_big_file.robot + name: Testcase 42 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 474 + start: + character: 0 + line: 474 + uri: very_big_file.robot + name: Testcase 43 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 485 + start: + character: 0 + line: 485 + uri: very_big_file.robot + name: Testcase 44 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 496 + start: + character: 0 + line: 496 + uri: very_big_file.robot + name: Testcase 45 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 507 + start: + character: 0 + line: 507 + uri: very_big_file.robot + name: Testcase 46 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 518 + start: + character: 0 + line: 518 + uri: very_big_file.robot + name: Testcase 47 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 529 + start: + character: 0 + line: 529 + uri: very_big_file.robot + name: Testcase 48 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 540 + start: + character: 0 + line: 540 + uri: very_big_file.robot + name: Testcase 49 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 56 + start: + character: 0 + line: 56 + uri: very_big_file.robot + name: Testcase 5 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 551 + start: + character: 0 + line: 551 + uri: very_big_file.robot + name: Testcase 50 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 562 + start: + character: 0 + line: 562 + uri: very_big_file.robot + name: Testcase 51 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 573 + start: + character: 0 + line: 573 + uri: very_big_file.robot + name: Testcase 52 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 584 + start: + character: 0 + line: 584 + uri: very_big_file.robot + name: Testcase 53 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 595 + start: + character: 0 + line: 595 + uri: very_big_file.robot + name: Testcase 54 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 606 + start: + character: 0 + line: 606 + uri: very_big_file.robot + name: Testcase 55 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 617 + start: + character: 0 + line: 617 + uri: very_big_file.robot + name: Testcase 56 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 628 + start: + character: 0 + line: 628 + uri: very_big_file.robot + name: Testcase 57 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 639 + start: + character: 0 + line: 639 + uri: very_big_file.robot + name: Testcase 58 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 650 + start: + character: 0 + line: 650 + uri: very_big_file.robot + name: Testcase 59 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 67 + start: + character: 0 + line: 67 + uri: very_big_file.robot + name: Testcase 6 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 661 + start: + character: 0 + line: 661 + uri: very_big_file.robot + name: Testcase 60 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 672 + start: + character: 0 + line: 672 + uri: very_big_file.robot + name: Testcase 61 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 683 + start: + character: 0 + line: 683 + uri: very_big_file.robot + name: Testcase 62 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 11 + line: 694 + start: + character: 0 + line: 694 + uri: very_big_file.robot + name: Testcase 63 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 78 + start: + character: 0 + line: 78 + uri: very_big_file.robot + name: Testcase 7 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 89 + start: + character: 0 + line: 89 + uri: very_big_file.robot + name: Testcase 8 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 100 + start: + character: 0 + line: 100 + uri: very_big_file.robot + name: Testcase 9 + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 63 + line: 4627 + start: + character: 0 + line: 4627 + uri: very_big_file.robot + name: the Android ${name} is hiding in a futuristic city ${city_name} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 70 + line: 4639 + start: + character: 0 + line: 4639 + uri: very_big_file.robot + name: the Android ${name} responds with a cryptic answer "${cryptic_answer}" + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 67 + line: 4651 + start: + character: 0 + line: 4651 + uri: very_big_file.robot + name: the Blade Runner ${name} decides whether to "${action}" the Android + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 75 + line: 4623 + start: + character: 0 + line: 4623 + uri: very_big_file.robot + name: the Blade Runner ${name} is on a mission to find a rogue Android Stan Riley + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 74 + line: 4635 + start: + character: 0 + line: 4635 + uri: very_big_file.robot + name: the Blade Runner asks the Android if it knows the meaning of "${question}" + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 64 + line: 4631 + start: + character: 0 + line: 4631 + uri: very_big_file.robot + name: the Blade Runner encounters the Android ${name} in a ${location} + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 55 + line: 4647 + start: + character: 0 + line: 4647 + uri: very_big_file.robot + name: the Blade Runner performs a ${test} test on the Android + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 50 + line: 4643 + start: + character: 0 + line: 4643 + uri: very_big_file.robot + name: the Blade Runner suspects the Android is not human + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 50 + line: 4655 + start: + character: 0 + line: 4655 + uri: very_big_file.robot + name: the test confirms the Android ${name} is non-human + tags: null diff --git a/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out new file mode 100644 index 00000000..e29fff18 --- /dev/null +++ b/tests/robotcode/language_server/robotframework/parts/_regtest_outputs/rf73/test_workspace_symbols.test[first].out @@ -0,0 +1,676 @@ +result: +- !WorkspaceSymbol + container_name: __not_discovered + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: __not_discovered.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: _not_discovered + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: _not_discovered.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: bddstyle + data: null + kind: 12 + location: + range: + end: + character: 34 + line: 1 + start: + character: 0 + line: 1 + uri: bddstyle.robot + name: value of var <${input}> is present + tags: null +- !WorkspaceSymbol + container_name: code_action_show_documentation + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 27 + start: + character: 0 + line: 27 + uri: code_action_show_documentation.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: discovered__ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: discovered__.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: discovered__ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 5 + start: + character: 0 + line: 5 + uri: discovered__.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 168 + start: + character: 0 + line: 168 + uri: document_highlight.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: document_highlight + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 29 + start: + character: 0 + line: 29 + uri: document_highlight.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: duplicated_resources + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 13 + start: + character: 0 + line: 13 + uri: duplicated_resources.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: external_libray + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: external_libray.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: first.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 1 + start: + character: 0 + line: 1 + uri: first.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: first + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 3 + start: + character: 0 + line: 3 + uri: first.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: foldingrange + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 8 + start: + character: 0 + line: 8 + uri: foldingrange.robot + name: First + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 217 + start: + character: 0 + line: 217 + uri: goto.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: goto + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 40 + start: + character: 0 + line: 40 + uri: goto.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: grouptest + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 1 + start: + character: 0 + line: 1 + uri: grouptest.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: hover + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 62 + start: + character: 0 + line: 62 + uri: hover.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: indexed_variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 6 + start: + character: 0 + line: 6 + uri: indexed_variables.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: jsonvariables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 4 + start: + character: 0 + line: 4 + uri: jsonvariables.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: part1__suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: part1__suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: part2__suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: part2__suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 6 + start: + character: 0 + line: 6 + uri: playground.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: playground + data: null + kind: 12 + location: + range: + end: + character: 8 + line: 21 + start: + character: 0 + line: 21 + uri: playground.robot + name: first kw + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 191 + start: + character: 0 + line: 191 + uri: references.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: references + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 31 + start: + character: 0 + line: 31 + uri: references.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: remotetest + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: remotetest.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: reserved + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 1 + start: + character: 0 + line: 1 + uri: reserved.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: second + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 5 + start: + character: 0 + line: 5 + uri: second.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: setup_teardown + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 10 + start: + character: 0 + line: 10 + uri: setup_teardown.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: signature_help + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 11 + start: + character: 0 + line: 11 + uri: signature_help.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: simple + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple suite + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple suite.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple suite_ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple suite_.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: simple_ + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: simple_.robot + name: first test + tags: null +- !WorkspaceSymbol + container_name: sometasks + data: null + kind: 5 + location: + range: + end: + character: 10 + line: 1 + start: + character: 0 + line: 1 + uri: sometasks.robot + name: first task + tags: null +- !WorkspaceSymbol + container_name: suite_with_name + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 4 + start: + character: 0 + line: 4 + uri: suite_with_name.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 13 + location: + range: + end: + character: 27 + line: 41 + start: + character: 19 + line: 41 + uri: symbols.robot + name: ${first} + tags: null +- !WorkspaceSymbol + container_name: symbols + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 11 + start: + character: 0 + line: 11 + uri: symbols.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: templates + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 10 + start: + character: 0 + line: 10 + uri: templates.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: variables + data: null + kind: 5 + location: + range: + end: + character: 5 + line: 17 + start: + character: 0 + line: 17 + uri: variables.robot + name: first + tags: null +- !WorkspaceSymbol + container_name: vartest + data: null + kind: 12 + location: + range: + end: + character: 65 + line: 43 + start: + character: 0 + line: 43 + uri: vartest.robot + name: a keyword with variables in doc, timeout and tags with args first + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 75 + line: 4623 + start: + character: 0 + line: 4623 + uri: very_big_file.robot + name: the Blade Runner ${name} is on a mission to find a rogue Android Stan Riley + tags: null +- !WorkspaceSymbol + container_name: very_big_file + data: null + kind: 12 + location: + range: + end: + character: 50 + line: 4655 + start: + character: 0 + line: 4655 + uri: very_big_file.robot + name: the test confirms the Android ${name} is non-human + tags: null From 3a29cbf2d2f59179f7eaa6e9026ce5b092bf6d27 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Sun, 1 Jun 2025 00:04:18 +0200 Subject: [PATCH 012/110] =?UTF-8?q?chore(release):=20bump=20version=201.3.?= =?UTF-8?q?0-dev.3=20=E2=86=92=201.3.0-dev.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 +++ intellij-client/gradle.properties | 2 +- package-lock.json | 4 +-- package.json | 4 +-- packages/analyze/pyproject.toml | 6 ++-- .../src/robotcode/analyze/__version__.py | 2 +- .../core/src/robotcode/core/__version__.py | 2 +- packages/debugger/pyproject.toml | 4 +-- .../src/robotcode/debugger/__version__.py | 2 +- packages/jsonrpc2/pyproject.toml | 2 +- .../src/robotcode/jsonrpc2/__version__.py | 2 +- packages/language_server/pyproject.toml | 8 ++--- .../robotcode/language_server/__version__.py | 2 +- .../src/robotcode/modifiers/__version__.py | 2 +- .../src/robotcode/plugin/__version__.py | 2 +- packages/repl/pyproject.toml | 2 +- .../repl/src/robotcode/repl/__version__.py | 2 +- packages/repl_server/pyproject.toml | 4 +-- .../src/robotcode/repl_server/__version__.py | 2 +- packages/robot/pyproject.toml | 2 +- .../robot/src/robotcode/robot/__version__.py | 2 +- packages/runner/pyproject.toml | 8 ++--- .../src/robotcode/runner/__version__.py | 2 +- pyproject.toml | 30 +++++++++---------- src/robotcode/cli/__version__.py | 2 +- 25 files changed, 54 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f497a437..b89c3808 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. See [conven ### Bug Fixes - **cli:** Corrected monkey patching for click>=8.2.0 ([425e64d](https://github.com/robotcodedev/robotcode/commit/425e64ddf8c6a9a54ec6fe3d801253c2e3a2156a)) +- **formatting:** Improve message clarity for robocop formatting ([f71d15d](https://github.com/robotcodedev/robotcode/commit/f71d15df40f8bfd1f9f325d35e1ba73bcf16c9aa)) - **textmate:** Corrected highlightning of comments in variable section ([5204afb](https://github.com/robotcodedev/robotcode/commit/5204afbfdd7f745c3e00ebc8d59fa3ad992ec0a8)) - **textmate:** Enhance variable assignment handling ([7333eb9](https://github.com/robotcodedev/robotcode/commit/7333eb9b2f46e2af25583af2d5346b4b92dd1137)) - Corrected detection of robocop ([f06bcbc](https://github.com/robotcodedev/robotcode/commit/f06bcbc1c2514326567399f8e5179da6ff5f9ed7)) @@ -17,7 +18,10 @@ All notable changes to this project will be documented in this file. See [conven - **intellij:** Reimplement and simplified parsing and syntax highlightning ([2dcdf7c](https://github.com/robotcodedev/robotcode/commit/2dcdf7ce846e8483fb427cdc7945a084fe4c3232)) - **langserver:** Implemented robocop 6.0 formatting and deprecate old robotidy ([310bc54](https://github.com/robotcodedev/robotcode/commit/310bc544be8306fb85a329698763b562cd9d85aa)) - **langserver:** Better support for indexed assignments ([6fad9b1](https://github.com/robotcodedev/robotcode/commit/6fad9b161b85b2412b6a9d5169e69b4ce37c43c3)) +- **vscode:** Add language model tool to get the library and resource imports from a robot file ([e5631f0](https://github.com/robotcodedev/robotcode/commit/e5631f042e42810b35d8694649cb76819b7b5866)) +- **vscode:** Add language model tools for retrieving library documentation and environment details ([a311e99](https://github.com/robotcodedev/robotcode/commit/a311e996cf95b2afaacc4b4402a4e2749b8d46bc)) - **vscode:** Add deprecation messages for robotframework-tidy in configuration ([37c5371](https://github.com/robotcodedev/robotcode/commit/37c5371919d10a7ea1f46c91f1f7707b63fa96ce)) +- Basic support for Robot Framework 7.3 ([e6ffef7](https://github.com/robotcodedev/robotcode/commit/e6ffef7ded23ccab2bf3359891e5698f65a99ec4)) - Show editor hint for Python/Robot Framework issues instead of throwing error ([4c2a43b](https://github.com/robotcodedev/robotcode/commit/4c2a43b8fd2ece7f905fc10695f2d5b9487dc52a)) diff --git a/intellij-client/gradle.properties b/intellij-client/gradle.properties index 2e2deb2d..76388ac0 100644 --- a/intellij-client/gradle.properties +++ b/intellij-client/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = dev.robotcode pluginName = RobotCode - Robot Framework Support pluginRepositoryUrl = https://github.com/robotcodedev/robotcode4ij # SemVer format -> https://semver.org -pluginVersion = 1.3.0-dev.3 +pluginVersion = 1.3.0-dev.4 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 251 diff --git a/package-lock.json b/package-lock.json index b3e7da12..3bbd5f41 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "robotcode", - "version": "1.3.0-dev.3", + "version": "1.3.0-dev.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "robotcode", - "version": "1.3.0-dev.3", + "version": "1.3.0-dev.4", "funding": [ { "type": "opencollective", diff --git a/package.json b/package.json index 54ce36e7..197a2f59 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "Robot Framework IntelliSense, linting, test execution and debugging, code formatting, refactoring, and many more", "icon": "images/icon.png", "publisher": "d-biehl", - "version": "1.3.0-dev.3", + "version": "1.3.0-dev.4", "author": { "name": "Daniel Biehl", "url": "https://github.com/robotcodedev/" @@ -2112,4 +2112,4 @@ "workspaces": [ "docs" ] -} \ No newline at end of file +} diff --git a/packages/analyze/pyproject.toml b/packages/analyze/pyproject.toml index 0d74dae0..d97d6968 100644 --- a/packages/analyze/pyproject.toml +++ b/packages/analyze/pyproject.toml @@ -27,9 +27,9 @@ classifiers = [ ] dependencies = [ "robotframework>=4.1.0", - "robotcode-plugin==1.3.0-dev.3", - "robotcode-robot==1.3.0-dev.3", - "robotcode==1.3.0-dev.3", + "robotcode-plugin==1.3.0-dev.4", + "robotcode-robot==1.3.0-dev.4", + "robotcode==1.3.0-dev.4", ] dynamic = ["version"] diff --git a/packages/analyze/src/robotcode/analyze/__version__.py b/packages/analyze/src/robotcode/analyze/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/analyze/src/robotcode/analyze/__version__.py +++ b/packages/analyze/src/robotcode/analyze/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/core/src/robotcode/core/__version__.py b/packages/core/src/robotcode/core/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/core/src/robotcode/core/__version__.py +++ b/packages/core/src/robotcode/core/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/debugger/pyproject.toml b/packages/debugger/pyproject.toml index ecee6f92..1114bb7b 100644 --- a/packages/debugger/pyproject.toml +++ b/packages/debugger/pyproject.toml @@ -28,8 +28,8 @@ classifiers = [ dynamic = ["version"] dependencies = [ "robotframework>=4.1.0", - "robotcode-jsonrpc2==1.3.0-dev.3", - "robotcode-runner==1.3.0-dev.3", + "robotcode-jsonrpc2==1.3.0-dev.4", + "robotcode-runner==1.3.0-dev.4", ] [project.optional-dependencies] diff --git a/packages/debugger/src/robotcode/debugger/__version__.py b/packages/debugger/src/robotcode/debugger/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/debugger/src/robotcode/debugger/__version__.py +++ b/packages/debugger/src/robotcode/debugger/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/jsonrpc2/pyproject.toml b/packages/jsonrpc2/pyproject.toml index eab80521..8f39947d 100644 --- a/packages/jsonrpc2/pyproject.toml +++ b/packages/jsonrpc2/pyproject.toml @@ -25,7 +25,7 @@ classifiers = [ "Framework :: Robot Framework", "Framework :: Robot Framework :: Tool", ] -dependencies = ["robotcode-core==1.3.0-dev.3"] +dependencies = ["robotcode-core==1.3.0-dev.4"] dynamic = ["version"] [project.urls] diff --git a/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py b/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py +++ b/packages/jsonrpc2/src/robotcode/jsonrpc2/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/language_server/pyproject.toml b/packages/language_server/pyproject.toml index 08e83e1b..04f2276c 100644 --- a/packages/language_server/pyproject.toml +++ b/packages/language_server/pyproject.toml @@ -27,10 +27,10 @@ classifiers = [ ] dependencies = [ "robotframework>=4.1.0", - "robotcode-jsonrpc2==1.3.0-dev.3", - "robotcode-robot==1.3.0-dev.3", - "robotcode-analyze==1.3.0-dev.3", - "robotcode==1.3.0-dev.3", + "robotcode-jsonrpc2==1.3.0-dev.4", + "robotcode-robot==1.3.0-dev.4", + "robotcode-analyze==1.3.0-dev.4", + "robotcode==1.3.0-dev.4", ] dynamic = ["version"] diff --git a/packages/language_server/src/robotcode/language_server/__version__.py b/packages/language_server/src/robotcode/language_server/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/language_server/src/robotcode/language_server/__version__.py +++ b/packages/language_server/src/robotcode/language_server/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/modifiers/src/robotcode/modifiers/__version__.py b/packages/modifiers/src/robotcode/modifiers/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/modifiers/src/robotcode/modifiers/__version__.py +++ b/packages/modifiers/src/robotcode/modifiers/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/plugin/src/robotcode/plugin/__version__.py b/packages/plugin/src/robotcode/plugin/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/plugin/src/robotcode/plugin/__version__.py +++ b/packages/plugin/src/robotcode/plugin/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/repl/pyproject.toml b/packages/repl/pyproject.toml index 257b2475..ce6dc8d0 100644 --- a/packages/repl/pyproject.toml +++ b/packages/repl/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "robotcode-runner==1.3.0-dev.3" + "robotcode-runner==1.3.0-dev.4" ] [project.entry-points.robotcode] diff --git a/packages/repl/src/robotcode/repl/__version__.py b/packages/repl/src/robotcode/repl/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/repl/src/robotcode/repl/__version__.py +++ b/packages/repl/src/robotcode/repl/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/repl_server/pyproject.toml b/packages/repl_server/pyproject.toml index 7a391993..5b3e9738 100644 --- a/packages/repl_server/pyproject.toml +++ b/packages/repl_server/pyproject.toml @@ -27,8 +27,8 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "robotcode-jsonrpc2==1.3.0-dev.3", - "robotcode-runner==1.3.0-dev.3" + "robotcode-jsonrpc2==1.3.0-dev.4", + "robotcode-runner==1.3.0-dev.4" ] [project.entry-points.robotcode] diff --git a/packages/repl_server/src/robotcode/repl_server/__version__.py b/packages/repl_server/src/robotcode/repl_server/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/repl_server/src/robotcode/repl_server/__version__.py +++ b/packages/repl_server/src/robotcode/repl_server/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/robot/pyproject.toml b/packages/robot/pyproject.toml index 93b538b6..b2c41b20 100644 --- a/packages/robot/pyproject.toml +++ b/packages/robot/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "robotframework>=4.1.0", "tomli>=1.1.0; python_version < '3.11'", "platformdirs>=3.2.0,<4.4.0", - "robotcode-core==1.3.0-dev.3", + "robotcode-core==1.3.0-dev.4", ] dynamic = ["version"] diff --git a/packages/robot/src/robotcode/robot/__version__.py b/packages/robot/src/robotcode/robot/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/robot/src/robotcode/robot/__version__.py +++ b/packages/robot/src/robotcode/robot/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/packages/runner/pyproject.toml b/packages/runner/pyproject.toml index b640afb2..ea5ac0e7 100644 --- a/packages/runner/pyproject.toml +++ b/packages/runner/pyproject.toml @@ -28,10 +28,10 @@ classifiers = [ dynamic = ["version"] dependencies = [ "robotframework>=4.1.0", - "robotcode-robot==1.3.0-dev.3", - "robotcode-modifiers==1.3.0-dev.3", - "robotcode-plugin==1.3.0-dev.3", - "robotcode==1.3.0-dev.3", + "robotcode-robot==1.3.0-dev.4", + "robotcode-modifiers==1.3.0-dev.4", + "robotcode-plugin==1.3.0-dev.4", + "robotcode==1.3.0-dev.4", ] [project.entry-points.robotcode] diff --git a/packages/runner/src/robotcode/runner/__version__.py b/packages/runner/src/robotcode/runner/__version__.py index f5dfc424..8dab291f 100644 --- a/packages/runner/src/robotcode/runner/__version__.py +++ b/packages/runner/src/robotcode/runner/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" diff --git a/pyproject.toml b/pyproject.toml index d0bd67e0..517ad79a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,9 +51,9 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "robotcode-core==1.3.0-dev.3", - "robotcode-plugin==1.3.0-dev.3", - "robotcode-robot==1.3.0-dev.3", + "robotcode-core==1.3.0-dev.4", + "robotcode-plugin==1.3.0-dev.4", + "robotcode-robot==1.3.0-dev.4", ] dynamic = ["version"] @@ -71,24 +71,24 @@ robotcode = "robotcode.cli.__main__:main" [project.optional-dependencies] -debugger = ["robotcode-debugger==1.3.0-dev.3"] -languageserver = ["robotcode-language-server==1.3.0-dev.3"] -runner = ["robotcode-runner==1.3.0-dev.3"] -analyze = ["robotcode-analyze==1.3.0-dev.3"] +debugger = ["robotcode-debugger==1.3.0-dev.4"] +languageserver = ["robotcode-language-server==1.3.0-dev.4"] +runner = ["robotcode-runner==1.3.0-dev.4"] +analyze = ["robotcode-analyze==1.3.0-dev.4"] yaml = ["PyYAML>=5.4"] lint = ["robotframework-robocop>=2.0.0"] tidy = ["robotframework-tidy>=2.0.0"] rest = ["docutils"] -repl = ["robotcode-repl==1.3.0-dev.3"] -replserver = ["robotcode-repl-server==1.3.0-dev.3"] +repl = ["robotcode-repl==1.3.0-dev.4"] +replserver = ["robotcode-repl-server==1.3.0-dev.4"] colored = ["rich"] all = [ - "robotcode-debugger==1.3.0-dev.3", - "robotcode-language-server==1.3.0-dev.3", - "robotcode-runner==1.3.0-dev.3", - "robotcode-analyze==1.3.0-dev.3", - "robotcode-repl==1.3.0-dev.3", - "robotcode-repl-server==1.3.0-dev.3", + "robotcode-debugger==1.3.0-dev.4", + "robotcode-language-server==1.3.0-dev.4", + "robotcode-runner==1.3.0-dev.4", + "robotcode-analyze==1.3.0-dev.4", + "robotcode-repl==1.3.0-dev.4", + "robotcode-repl-server==1.3.0-dev.4", "PyYAML>=5.4", "robotframework-robocop>=2.0.0", "robotframework-tidy>=2.0.0", diff --git a/src/robotcode/cli/__version__.py b/src/robotcode/cli/__version__.py index f5dfc424..8dab291f 100644 --- a/src/robotcode/cli/__version__.py +++ b/src/robotcode/cli/__version__.py @@ -1 +1 @@ -__version__ = "1.3.0-dev.3" +__version__ = "1.3.0-dev.4" From 0b51afce6acace2de358120dae365f190719cd05 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Tue, 3 Jun 2025 19:39:56 +0200 Subject: [PATCH 013/110] feat(debugger): update delayed logging handling for Robot Framework 7.3 compatibility closes #457 --- .../src/robotcode/debugger/debugger.py | 57 +++++++++++-------- 1 file changed, 34 insertions(+), 23 deletions(-) diff --git a/packages/debugger/src/robotcode/debugger/debugger.py b/packages/debugger/src/robotcode/debugger/debugger.py index d09f684c..12544c1c 100644 --- a/packages/debugger/src/robotcode/debugger/debugger.py +++ b/packages/debugger/src/robotcode/debugger/debugger.py @@ -1781,29 +1781,40 @@ def run_kw() -> Any: result = None if len(test.body): - for kw in test.body: - with LOGGER.delayed_logging: - try: - result = self._run_keyword(kw, evaluate_context) - except (SystemExit, KeyboardInterrupt): - raise - except BaseException as e: - result = e - break - finally: - if get_robot_version() <= (7, 2): - messages = LOGGER._log_message_cache or [] - for msg in messages or (): - # hack to get and evaluate log level - listener: Any = next(iter(LOGGER), None) - if listener is None or self.check_message_is_logged(listener, msg): - self.log_message( - { - "level": msg.level, - "message": msg.message, - "timestamp": msg.timestamp, - } - ) + if get_robot_version() >= (7, 3): + for kw in test.body: + with evaluate_context.output.delayed_logging: + try: + result = self._run_keyword(kw, evaluate_context) + except (SystemExit, KeyboardInterrupt): + raise + except BaseException as e: + result = e + break + else: + for kw in test.body: + with LOGGER.delayed_logging: + try: + result = self._run_keyword(kw, evaluate_context) + except (SystemExit, KeyboardInterrupt): + raise + except BaseException as e: + result = e + break + finally: + if get_robot_version() <= (7, 2): + messages = LOGGER._log_message_cache or [] + for msg in messages or (): + # hack to get and evaluate log level + listener: Any = next(iter(LOGGER), None) + if listener is None or self.check_message_is_logged(listener, msg): + self.log_message( + { + "level": msg.level, + "message": msg.message, + "timestamp": msg.timestamp, + } + ) return result result = self.run_in_robot_thread(run_kw) From b23331b8622ddd97c2030de96212323f5e7d4171 Mon Sep 17 00:00:00 2001 From: Daniel Biehl Date: Thu, 5 Jun 2025 13:39:31 +0200 Subject: [PATCH 014/110] docs(contributing): enhance development setup and workflow instructions Updated the contributing guide to include detailed development environment setup options, IDE configuration, and a comprehensive development workflow. Improved clarity and added troubleshooting tips for common issues. --- CONTRIBUTING.md | 439 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 418 insertions(+), 21 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 05109c96..e9554b82 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,12 +5,12 @@ First off, thanks for taking the time to contribute! ❤️ All types of contributions are encouraged and valued. See the [Table of Contents](#table-of-contents) for different ways to help and details about how this project handles them. Please make sure to read the relevant section before making your contribution. It will make it a lot easier for us maintainers and smooth out the experience for all involved. The community looks forward to your contributions. 🎉 -> And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: -> - Star the project -> - Tweet about it -> - Refer this project in your project's readme -> - Mention the project at local meetups and tell your friends/colleagues -> - Sponsor this project by clicking on the sponsor button on the project page +And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about: +- Star the project +- Tweet about it +- Refer this project in your project's readme +- Mention the project at local meetups and tell your friends/colleagues +- Sponsor this project by clicking on the sponsor button on the project page ## Table of Contents @@ -21,6 +21,15 @@ All types of contributions are encouraged and valued. See the [Table of Contents - [Reporting Bugs](#reporting-bugs) - [Suggesting Enhancements](#suggesting-enhancements) - [Your First Code Contribution](#your-first-code-contribution) + - [Development Environment Setup](#development-environment-setup) + - [IDE Configuration](#ide-configuration) + - [Development Workflow](#development-workflow) + - [Pull Request Guidelines](#pull-request-guidelines) + - [Running Tests](#running-tests) + - [Building the Project](#building-the-project) + - [Additional Development Commands](#additional-development-commands) + - [Troubleshooting Development Setup](#troubleshooting-development-setup) + - [Development Tools & Code Generation](#development-tools--code-generation) - [Improving The Documentation](#improving-the-documentation) - [Styleguides](#styleguides) - [Commit Messages](#commit-messages) @@ -37,7 +46,7 @@ to . ## I Have a Question -> If you want to ask a question, we assume that you have read the available [Documentation](https://robotcode.io). +If you want to ask a question, we assume that you have read the available [Documentation](https://robotcode.io). Before you ask a question, it is best to search for existing [Issues](https://github.com/robotcodedev/robotcode/issues) that might help you. In case you have found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to search the internet for answers first. @@ -80,7 +89,9 @@ A good bug report shouldn't leave others needing to chase you up for more inform - Make sure that you are using the latest version. - Determine if your bug is really a bug and not an error on your side e.g. using incompatible environment components/versions (Make sure that you have read the [documentation](https://robotcode.io). If you are looking for support, you might want to check [this section](#i-have-a-question)). -- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/robotcodedev/robotcodeissues?q=label%3Abug). +- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there is not already a bug report existing for your bug or error in the [bug tracker](https://github.com/robotcodedev/robotcode/issues?q=label%3Abug). +- Look or ask in the [Robot Framework Slack](https://robotframework.slack.com) in the channel [#vscode](https://robotframework.slack.com/archives/C0103745J7P) or in the [Robot Framework Forum](https://forum.robotframework.org) in the [Tools/Visual Studio Code(ium)](https://forum.robotframework.org/c/tools/vscode/28) category to see if other users have experienced (and potentially already solved) the same issue you are having. + - for questions about the intellj plugin there are also channels for pycharm - Also make sure to search the internet (including Stack Overflow) to see if users outside of the GitHub community have discussed the issue. - Collect information about the bug: - Stack trace (Traceback) @@ -137,33 +148,419 @@ Enhancement suggestions are tracked as [GitHub issues](https://github.com/robotc ### Your First Code Contribution - +Welcome to your first code contribution! Here's how to set up your development environment and get started. + +#### Development Environment Setup + +**Option 1: Using GitHub Codespaces (Easiest)** + +The quickest way to get started without any local setup: + +1. **Setup:** + - Go to the [robotcode repository](https://github.com/robotcodedev/robotcode) + - Click the green "Code" button + - Select "Codespaces" tab + - Click "Create codespace on main" + - Wait for the codespace to initialize (this uses the same dev container configuration) + +GitHub Codespaces provides a full VS Code environment in your browser with all dependencies pre-installed. + +**Option 2: Using Dev Container (Local)** + +For local development with containers: + +1. **Prerequisites:** + - Install [Docker](https://www.docker.com/get-started) + - Install [Visual Studio Code](https://code.visualstudio.com/) + - Install the [Dev Containers extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) + +2. **Setup:** + - Clone the repository: `git clone https://github.com/robotcodedev/robotcode.git` + - Open the project in VS Code + - When prompted, click "Reopen in Container" or use the Command Palette (`Cmd+Shift+P` / `Ctrl+Shift+P`) and select "Dev Containers: Reopen in Container" + - The container will automatically install all dependencies including Python, Node.js, and required packages + +**Option 3: Local Development** + +If you prefer to set up locally: + +1. **Prerequisites:** + - Python 3.8+ (system Python is fine) + - Node.js 16+ + - Git + +2. **Setup:** + ```bash + git clone https://github.com/robotcodedev/robotcode.git + cd robotcode + + # Install Hatch (choose one method): + # Option A: Using system package manager (if available) + # Ubuntu/Debian: sudo apt install hatch + # Fedora: sudo dnf install hatch + # Arch: sudo pacman -S hatch + + # Option B: Using pipx (recommended if not in package manager) + pip install pipx + pipx install hatch + + # Option C: Check https://hatch.pypa.io/latest/install/ for other methods + + # Create development environment + hatch env create devel + + # install needed packages for the vscode and intellij packaging + hatch run build:install-bundled-editable -TODO... + # Install Node.js dependencies + npm install --also-dev + ``` + +#### IDE Configuration + +The project includes VS Code settings optimized for development: +- Python testing with pytest +- Code formatting with Prettier and Ruff +- Type checking with mypy +- Debugging configuration +- Recommended extensions are automatically suggested + +**Important: Python Interpreter Selection** + +After setting up the development environment with `hatch env create devel`, you need to select the correct Python interpreter in VS Code: + +1. Open the Command Palette (`Cmd+Shift+P` or `Ctrl+Shift+P` or `F1`) +2. Type "Python: Select Interpreter" +3. Choose the interpreter from the Hatch environment +4. Select the desired Python/Robot Framework version environment + +Hatch creates separate Python environments for each supported Python/Robot Framework version combination in your system's cache directory. + +You can also check available environments with: `hatch env show` + +#### Development Workflow + +1. **Create a branch:** `git checkout -b feature/your-feature-name` +2. **Make your changes** following the project's coding standards +3. **Run tests:** `hatch run devel.py312-rf73:test` (single combination for faster development) +4. **Run linting:** `hatch run lint:all` (or use the VS Code task) +5. **Fix linting issues:** `hatch run lint:style` for formatting +6. **Commit your changes** with a descriptive commit message +7. **Push and create a pull request** + +#### Pull Request Guidelines + +Before submitting your pull request: + +1. **Ensure all tests pass:** Run `hatch run test.rf73:test` (or your preferred combination) +2. **Check linting:** Run `hatch run lint:all` and fix any issues +3. **Write descriptive PR description:** + - Explain what changes you made and why + - Reference any related issues + - Include screenshots for UI changes + - List any breaking changes +4. **Keep PRs focused:** One feature/fix per PR when possible +5. **Update documentation:** Include relevant documentation updates +6. **Sign your commits:** All commits must be signed (see [Signed Commits](#signed-commits-required)) + +**PR Review Process:** +- Automated checks must pass (tests, linting, etc.) +- At least one maintainer review is required +- Address any feedback promptly +- Keep your PR up to date with the main branch + +#### Running Tests + +**Basic Test Execution:** +- Use VS Code's built-in test runner (Testing tab in the sidebar) +- Or run from terminal: `hatch run test` (⚠️ **Warning**: This runs tests against ALL Python/Robot Framework combinations in the matrix - can take a very long time!) +- Run specific tests: `hatch run test tests/specific_test.py` (also runs against all matrix combinations) + +**Testing with Specific Python/Robot Framework Versions:** + +The project supports multiple Python and Robot Framework versions. You can run tests against specific combinations: + +```bash +# Run tests with specific Robot Framework versions (single combination) +hatch run test:test # ⚠️ Runs ALL matrix combinations (RF 4.1-7.3) +hatch run test.rf70:test # Robot Framework 7.0.x +hatch run test.rf71:test # Robot Framework 7.1.x +hatch run test.rf72:test # Robot Framework 7.2.x +hatch run test.rf73:test # Robot Framework 7.3.x (recommended for development) +hatch run test.rf61:test # Robot Framework 6.1.x +hatch run test.rf60:test # Robot Framework 6.0.x +hatch run test.rf50:test # Robot Framework 5.0.x +hatch run test.rf41:test # Robot Framework 4.1.x + +# Run tests in specific development environments (single combination) +hatch run devel:test # ⚠️ Runs ALL matrix combinations (Python 3.8-3.13 × RF 4.1-7.3) +hatch run devel.py39-rf73:test # Python 3.9 with Robot Framework 7.3.x (single combination) +hatch run devel.py311-rf70:test # Python 3.11 with Robot Framework 7.0.x (single combination) +hatch run devel.py312-rf73:test # Python 3.12 with Robot Framework 7.3.x (single combination) +hatch run devel.py313-rf73:test # Python 3.13 with Robot Framework 7.3.x (single combination) + +# Test against development versions of Robot Framework +hatch run rfbeta:test # Robot Framework beta/RC versions +hatch run rfmaster:test # Robot Framework master branch +hatch run rfdevel:test # Local Robot Framework development version +``` + +**⚠️ Important Matrix Behavior:** +- `hatch run test` executes tests for **all combinations** in the matrix (48 combinations: 6 Python versions × 8 RF versions) +- `hatch run devel:test` also runs **all matrix combinations** +- For faster development, use specific combinations like `hatch run devel.py312-rf73:test` +- For CI/full testing, use the matrix commands + +**Available Environment Matrix:** +- **Python versions**: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13 +- **Robot Framework versions**: 4.1.x, 5.0.x, 6.0.x, 6.1.x, 7.0.x, 7.1.x, 7.2.x, 7.3.x + +#### Building the Project + +- Package for distribution: `hatch run build:package` + +#### Additional Development Commands + +**Code Quality & Linting:** +- Type checking: `hatch run lint:typing` +- Code style check and formatting: `hatch run lint:style` +- Run all linting checks: `hatch run lint:all` + +**Project Maintenance & Code Generation:** +- Generate Robot Framework syntax files: `hatch run generate-tmlanguage` +- Create JSON schema for robot.toml: `hatch run create-json-schema` +- Generate Robot Framework options: `hatch run generate-rf-options` +- Install bundled packages in editable mode: `hatch run build:install-bundled-editable` + +**Release & Documentation:** +- Update changelog: `hatch run build:update-changelog` +- Update git versions: `hatch run build:update-git-versions` +- Bump version: `hatch run build:bump [major|minor|patch]` +- Package for distribution: `hatch run build:package` +- Publish to PyPI, VS Code Marketplace, etc.: `hatch run build:publish` + - you need the specific credentials set up in your environment for this to work + +#### Troubleshooting Development Setup + +**Common Issues:** + +1. **Hatch environment creation fails:** + ```bash + # Clear Hatch cache and try again + hatch env prune + hatch env create devel + ``` + +2. **VS Code doesn't find the Python interpreter:** + - Use `hatch env find devel` to get the exact path + - Manually select the interpreter in VS Code using this path + +3. **Tests fail with import errors:** + - Ensure you're in the correct hatch environment + - Run `hatch run build:install-bundled-editable` to install development packages + +4. **Node.js dependencies issues:** + ```bash + # Clean and reinstall npm dependencies + rm -rf node_modules package-lock.json + npm install --also-dev + ``` + +#### Development Tools & Code Generation + +The robotcode project includes several development tools and code generation scripts: + +**Syntax & Language Support:** +- `hatch run generate-tmlanguage` - Regenerate VS Code syntax highlighting files for Robot Framework +- `hatch run create-json-schema` - Create JSON schema for robot.toml configuration validation +- `hatch run generate-rf-options` - Generate Robot Framework command-line options documentation + +**Maintenance & Release Tools:** +- `hatch run build:update-changelog` - Update project changelog +- `hatch run build:update-git-versions` - Update version information from git +- `hatch run build:update-doc-links` - Update documentation links +- `hatch run build:bump [major|minor|patch]` - Bump project version using semantic versioning + +These tools are typically used by maintainers, but contributors might need some of them when working on specific features (e.g., syntax highlighting changes require `generate-tmlanguage`). ### Improving The Documentation - +Documentation is crucial for helping users understand and use robotcode effectively. Here are ways you can help improve it: + +#### Types of Documentation Contributions + +1. **User Documentation** (`docs/` folder) + - Getting started guides + - Feature explanations + - Configuration examples + - Troubleshooting guides + +2. **Code Documentation** + - Docstrings for classes and functions + - Inline comments for complex logic + - Type hints and annotations + +3. **README Updates** + - Installation instructions + - Quick start examples + - Feature highlights + +#### Documentation Setup + +The documentation is built using modern web technologies and is located in the `docs/` folder: -TODO ... +```bash +cd docs +npm install +npm run dev # Start development server at http://localhost:3000 +npm run build # Build for production +npm run preview # Preview production build +``` + +#### Documentation Standards + +- **Clear and concise:** Write for users of all skill levels +- **Examples:** Include practical code examples +- **Screenshots:** Add visual aids where helpful (stored in `docs/images/`) +- **Links:** Reference related concepts and external resources +- **Testing:** Verify that code examples actually work + +#### Making Documentation Changes + +1. **Small fixes:** Edit files directly and submit a pull request +2. **Major changes:** Open an issue first to discuss the approach +3. **New sections:** Follow the existing structure in the `docs/` folder +4. **Images:** Store in `docs/images/` and use relative paths + +#### Documentation Review Process + +- All documentation changes go through the same review process as code +- Maintainers will check for accuracy, clarity, and consistency +- Community feedback is encouraged on documentation pull requests ## Styleguides ### Commit Messages - +Good commit messages help maintain a clean project history and make it easier to understand changes. Please follow these guidelines: + +#### Format + +``` +(): + + + +