[TIMOB-3757] Debugger: Return the empty string "" for nameless functions instead of (anonymous)
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2011-05-15T10:41:22.000+0000 |
| Affected Version/s | Release 1.7.0 |
| Fix Version/s | Release 1.7.0, Sprint 2011-17 |
| Components | Android |
| Labels | android, debugger, parity |
| Reporter | Marshall Culpepper |
| Assignee | Marshall Culpepper |
| Created | 2011-04-27T13:03:25.000+0000 |
| Updated | 2011-05-15T10:41:22.000+0000 |
Steps to test: - Add a button with a "click" listener to the app, and set a breakpoint inside the listener
- Click the button, and when the breakpoint hits, the top stack frame in the Debug view should say "Top-level script"var button = ... button.addEventListener("click", function(e) { var x = 0; // set breakpoint here });Verified