﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2980	Can't call a function in a map with the point operator [BETA]	anonymous		"I love the point operator in maps. But this don't work with functions. The first version generates an error:
""The requested action with this object has failed.""


{{{
$oPerson = Person(""John Smith"", 30)

$oPerson.Print($oPerson) ; version 1

$oPerson[""Print""]($oPerson) ; version 2

$func = $oPerson.Print ; version 3
$func($oPerson)

Func Person($sName, $iAge)
	Local $oObj[]
	$oObj.Name = $sName
	$oObj.Age = $iAge
	$oObj.Print = Person_Print
	Return $oObj
EndFunc

Func Person_Print($oThis)
	ConsoleWrite($oThis.Name & "": "" & $oThis.Age & @LF)
EndFunc
}}}

Can you fix it?"	Feature Request	closed		AutoIt		None	Works For Me	Beta Version	
