Custom Query (3933 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (91 - 93 of 3933)

Ticket Resolution Summary Owner Reporter
#3560 Fixed parentheses around function refference fails when follwed by calling parentheses, triggers error: Statement cannot be just an expression. Jpm genius257
Description

Example:

Func ABC()
	MsgBox(0, "", "test")
EndFunc

$test = Test
($test)()

This is a problem when using objects:

Func ABC()
	MsgBox(0, "", "test")
EndFunc

$Object = ObjCreate("Scripting.Dictionary")
$Object.Add('ABC', ABC)
($Object.Item('ABC'))()
#2727 Wont Fix optional Datatypes anonymous
Description

The fact that I could not even find one ticket about this probably tells me that I shouldn't ask, but anyway, here we go.

If I remember it correctly then the variant datatype works by converting the content of the variables you are currently working with to the type that makes the most sense. If this is correct than it obviously has to be done every time the user works with a variable and therefore I guess that it slows AutoIt down a lot.

What I am asking for is not to force every user to specify the type of every variable, because this would break every AutoIt v3 script that is still working and it would be completely unnecessary.

What I am asking for instead is a static type system that is completely optional, that works by adding new Keywords and that simply bypasses all the checks and conversions that are currently done.

Example:

Local $a, $b, $c ; no datatype specified -> Variant
Local Int $i
Local String $s
Local Bool $f = ($a > $b)

Thanks for reading.

#1161 Fixed old colormode links and remarks. Valik anonymous
Description

old colormode links and remarks. counting 9 after help search for "colormode"

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.