Ticket #340 (accepted defect)

Opened 4 months ago

Last modified 10 days ago

Convert dense arrays to list instead of dict

Reported by: nick Owned by: nick
Priority: minor Milestone: 0.4
Component: Decoder Version: 0.3.1
Keywords: Cc:

Description

var arr:Array = ['version',6];
socket.writeObject(arr);
socket.flush();

Output:

{0:'version',1:6}

but better would be:

['version',6]

Change History

Changed 4 months ago by nick

  • status changed from new to accepted

Changed 10 days ago by thijs

Could you supply a full test script that reproduces this problem, that we can use to verify the fix for this problem?

Note: See TracTickets for help on using tickets.