Community
Participate
Working Groups
For the following code: function someFunction() { var subFunction = function() { } * } If you attempt content assist at the * you get a NPE. Add a null check.
Created attachment 175947 [details] patch
Add a null check.
java.lang.NullPointerException at org.eclipse.wst.jsdt.internal.compiler.lookup.MethodBinding.canBeSeenBy(Unknown Source) at org.eclipse.wst.jsdt.internal.codeassist.CompletionEngine.findLocalMethods(Unknown Source) at org.eclipse.wst.jsdt.internal.codeassist.CompletionEngine.findVariablesAndMethods(Unknown Source) at org.eclipse.wst.jsdt.internal.codeassist.CompletionEngine.complete(Unknown Source) at org.eclipse.wst.jsdt.internal.codeassist.CompletionEngine.complete(Unknown Source) at org.eclipse.wst.jsdt.internal.core.Openable.codeComplete(Unknown Source) at org.eclipse.wst.jsdt.internal.core.CompilationUnit.codeComplete(Unknown Source) at org.eclipse.wst.jsdt.internal.core.CompilationUnit.codeComplete(Unknown Source) at org.eclipse.wst.jsdt.internal.ui.text.java.JavaCompletionProposalComputer.internalComputeCompletionProposals(Unknown Source) at org.eclipse.wst.jsdt.internal.ui.text.java.JavaCompletionProposalComputer.computeCompletionProposals(Unknown Source) at org.eclipse.wst.jsdt.internal.ui.text.java.CompletionProposalComputerDescriptor.computeCompletionProposals(Unknown Source) at org.eclipse.wst.jsdt.internal.ui.text.java.CompletionProposalCategory.computeCompletionProposals(Unknown Source) at org.eclipse.wst.jsdt.internal.ui.text.java.ContentAssistProcessor.collectProposals(Unknown Source) at org.eclipse.wst.jsdt.internal.ui.text.java.ContentAssistProcessor.computeCompletionProposals(Unknown Source) at org.eclipse.jface.text.contentassist.ContentAssistant.computeCompletionProposals(Unknown Source) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.computeProposals(Unknown Source) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$16(Unknown Source) at org.eclipse.jface.text.contentassist.CompletionProposalPopup$2.run(Unknown Source)
Checked into 3.2.2. and HEAD.