« Bugzilla Issues Index
#1533 — 15.3.5.4_2-89gs just returns bound function instead of calling it
  
  
  - bug_id:
    1533
  
 
  
  
  - creation_ts:
    2013-05-31 02:21:00 -0700
  
 
  
  
  - short_desc:
    15.3.5.4_2-89gs just returns bound function instead of calling it
  
 
  
  
  - delta_ts:
    2014-07-10 14:51:56 -0700
  
 
  
  
  - product:
    Test262
  
 
  
  
  - component:
    ECMA-262 Tests
  
 
  
  
  - version:
    unspecified
  
 
  
  
  - rep_platform:
    All
  
 
  
  
  - op_sys:
    All
  
 
  
  
  - bug_status:
    RESOLVED
  
 
  
  
  - resolution:
    FIXED
  
 
  
  
  - priority:
    Normal
  
 
  
  
  - bug_severity:
    normal
  
 
  
  
  - everconfirmed:
    true
  
 
  
  
  - reporter:
    André Bargull
  
 
  
  
  - assigned_to:
    Prashanth Srinivasan
  
 
  
  
  - cc:
    ["brterlso", "trbaker"]
  
 
  
  
  
  
  - commentid:
    4107
  
 
  
  
  - comment_count:
    0
  
 
  
  
  - who:
    André Bargull
  
 
  
  
  - bug_when:
    2013-05-31 02:21:51 -0700
  
 
  
  
Change: (function () {"use strict"; return f.bind();})();
to: (function () {"use strict"; return f.bind()();})();
Note the additional call expression in `f.bind()()`.