Modify

Opened 3 years ago

Last modified 3 years ago

#3924 assigned Bug

Run-time error calling MyByRefFunc($map["foo"].bar) ==> Expected a variable in user function call

Reported by: nurupo Owned by: Jon
Milestone: Component: AutoIt
Version: 3.3.16.1 Severity: None
Keywords: Cc:

Description

The following causes a run-time error:

Global $map[], $submap[]
$submap.bar = 0
$map["foo"] = $submap
foo($map["foo"].bar) ; ==> Expected a variable in user function call.:

Func foo(ByRef $var)
EndFunc

You have to use [] and then dot notation to reproduce the error. [] and [] works and doesn't result in error.

Using a dot notation and then [] also results in the error, i.e.:

foo($map.foo["bar"])

This seems to be an issue of operator precedence, as putting () to force the left-most element to get extracted first doesn't result in any run-time error, i.e.:

foo(($map["foo"]).bar)

and

foo(($map.foo)["bar"])

respectably.

(Note that declaring the function before it is used results in an AU3Check instead, not a run-time error, which supposedly was fixed in 3.3.16.1 but I'm still experiencing it: https://www.autoitscript.com/trac/autoit/ticket/3902#comment:3)

Attachments (0)

Change History (6)

comment:1 by Jos, 3 years ago

Resolution: Fixed
Status: newclosed

EDIT: this is indeed an AutoIt3 internal issue..

Last edited 3 years ago by Jos (previous) (diff)

comment:2 by Jos, 3 years ago

Milestone: Future Release

comment:3 by nurupo, 3 years ago

I'm a bit confused with your reply. You have linked to the Au3Check.exe, but this is a run-time issue, the application runs and then crashes after encountering this issue, it's not the Au3Check.exe linter issue. The one in 3902 is the linter issue, but not this one.

in reply to:  3 comment:4 by Jos, 3 years ago

Resolution: Fixed
Status: closedreopened

Replying to nurupo:

I'm a bit confused with your reply. You have linked to the Au3Check.exe, but this is a run-time issue, the application runs and then crashes after encountering this issue, it's not the Au3Check.exe linter issue. The one in 3902 is the linter issue, but not this one.

Ah yes, you are right ... sorry about that and will correct my answer.

comment:5 by Jos, 3 years ago

Milestone: Future Release

comment:6 by J-Paul Mesnage, 3 years ago

Owner: set to Jon
Status: reopenedassigned

Modify Ticket

Action
as assigned The owner will remain Jon.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.