You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Roger Meier (JIRA)" <ji...@apache.org> on 2011/01/22 15:33:44 UTC

[jira] Assigned: (THRIFT-1043) Fix how the length of a map is calculated

     [ https://issues.apache.org/jira/browse/THRIFT-1043?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Roger Meier reassigned THRIFT-1043:
-----------------------------------

    Assignee: Roger Meier

> Fix how the length of a map is calculated
> -----------------------------------------
>
>                 Key: THRIFT-1043
>                 URL: https://issues.apache.org/jira/browse/THRIFT-1043
>             Project: Thrift
>          Issue Type: Bug
>          Components: JavaScript - Compiler, JavaScript - Library
>    Affects Versions: 0.5, 0.6
>            Reporter: Wade Simmons
>            Assignee: Roger Meier
>         Attachments: Fix-how-the-length-of-a-map-is-calculated.patch
>
>
> The current version of the JavaScript compiler uses map.length to calculate the size of a map, but this is not correct (this only works for arrays). This patch uses `Object.keys(map).length` for Node.js and a more compatible `for (k in map) ...` implementation for browsers.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.