Community
Participate
Working Groups
I'm getting an NPE when setting a breakpoint on a function with no name. e.g. something like: AssertTestCase.prototype.testAssertFalse = function() { assertFalse(false); assertFalse("test", false); assertFalse(true, false); }; The problem is on line 494 of BreakpointLocationFinder this.functionName = node.getName().getIdentifier(); we should instead do something like: this.functionName = node.getName() == null ? null : node.getName().getIdentifier();
Created attachment 167430 [details] proposed patch
+1 looks good Applied patch to HEAD