You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Aleksey (JIRA)" <ji...@apache.org> on 2015/02/16 13:19:11 UTC

[jira] [Created] (FLEX-34753) Returning strongly typed object in Promise fails

Aleksey created FLEX-34753:
------------------------------

             Summary: Returning strongly typed object in Promise fails
                 Key: FLEX-34753
                 URL: https://issues.apache.org/jira/browse/FLEX-34753
             Project: Apache Flex
          Issue Type: Bug
    Affects Versions: Apache Flex 4.14.0
            Reporter: Aleksey


When I try to call fulfill function and pass strongly typed object as argument it always fails. 
I think issue is in the _resolve function of Promise class:
if (result && (typeof(result) === 'object' || typeof(result) === 'function') && result.then is Function)

 Correct me if I am wrong but "typeof" will return "object" for any strongly typed objects and then next condition tries to access "then" property even though it might not be present.

I guess easyfix would be to add check ("then" in result) before trying to access it.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)