-
Notifications
You must be signed in to change notification settings - Fork 29
Closed
Labels
bugError, flaw, failure or fault that causes to produce an incorrect result or crashError, flaw, failure or fault that causes to produce an incorrect result or crash
Description
Describe the bug
class CfgPatches {
class Addon {
name = "";
author = "";
url = "";
};
class Addon2 {};
};
class A {};
class B {};configFile select 0 returns CfgPatches, as expected.
configFile select 1 returns Addon2
configFile select 2 returns url
(configFile >> "CfgPatches") select 0 returns CfgPatches
(configFile >> "CfgPatches") select 1 returns Addon2
(configFile >> "CfgPatches") select 2 throws The requested index two exceeds the available range of two., as expected.
To Reproduce
Steps to reproduce the behavior:
- Execute
sqfvm.exe --automated --config "class CfgPatches {class Addon {};};" --sqf "(configFile >> ""CfgPatches"") select 0" - Notice
[INF] Context droped with return value 'CfgPatches'.
Expected behavior
[INF] Context droped with return value 'Addon'.
Screenshots
N/A
Additional context
N/A
Metadata
Metadata
Assignees
Labels
bugError, flaw, failure or fault that causes to produce an incorrect result or crashError, flaw, failure or fault that causes to produce an incorrect result or crash