﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3533	Map Array Read/Write	dexto	Jon	"Can this be made possible? Arrays are a pain when used with a map.

{{{
Local $json[]
Local $map[]
$map['test'] = 'hello'
Local $array[5] = [1, 2, 3, 4, 5]
$json[""data""] = $map
$json[""data""][""arr""] = $array
ConsoleWrite($json[""data""][""arr""][0] & @CRLF)
$json[""data""][""arr""][0] = 9
ConsoleWrite($json[""data""][""arr""][0] & @CRLF)
}}}

Ideally this would be possible:

{{{
Local $json[]
$json[""data""]['test'] = 'hello'
$json[""data""][""arr""] = [1, 2, 3, 4, 5]
$json[""data""][""arr""][0] = 9
ConsoleWrite($json[""data""][""arr""][0] & @CRLF)
}}}
"	Feature Request	assigned		AutoIt		None		map, array	
