Open sshakil opened 5 months ago
Tried deleting ~/Library/Caches/JetBrains/WebStorm2023.3/plugins
and reinstalling CodeGPT but still reproducible
Removed some "options" config xml files in the webstorm directory structures, reinstalled CodeGPT and exception is gone, as hoped. Leaving open if you'd like to investigate.
Ok, I think I know why it's happening. If the JSDoc is malformed like it is in the above file, then the lexer breaks, kind of as expected
Thank you for reporting this issue. I will try to look into it soon.
What happened?
Got exception in WebStorm: InvalidStateException
Relevant log output or stack trace
Steps to reproduce
Prompt that led to exception, with DBRX selected in the dropdown in the Chat window, DBRX selected as the Chat model in CodeGPT Providers preferences and Code Llama selected as the model.
"implementation for this.isInteger, take into account the method comment."
Code file containing the isInteger empty method:
// You are given a nested list of integers nestedList. Each element is either an integer or a list whose elements may also be integers or other lists. // // The depth of an integer is the number of lists that it is inside of. For example, the nested list [1,[2,2],[[3],2],1] has each integer's value set to its depth. // // Return the sum of each integer in nestedList multiplied by its depth. // // // // Example 1: // // // Input: nestedList = [[1,1],2,[1,1]] // Output: 10 // Explanation: Four 1's at depth 2, one 2 at depth 1. 12 + 12 + 21 + 12 + 12 = 10. // Example 2: // // // Input: nestedList = [1,[4,[6]]] // Output: 27 // Explanation: One 1 at depth 1, one 4 at depth 2, and one 6 at depth 3. 11 + 42 + 63 = 27. // Example 3: // // Input: nestedList = [0] // Output: 0 // // // Constraints: // // 1 <= nestedList.length <= 50 // The values of the integers in the nested list is in the range [-100, 100]. // The maximum depth of any integer is less than or equal to 50.
/**
/**
/**
this.setInteger = function(value) { }
/ Set this NestedInteger to hold a nested list and adds a nested integer elem to it. @return {void} / this.add = function(elem) { }
/ Return the nested list that this NestedInteger holds, if it holds a nested list Return null if this NestedInteger holds a single integer @return {NestedInteger[]} / this.getList = function() { }
/* @param {NestedInteger[]} nestedList @return {number} / var depthSum = function(nestedList) {
};
console.assert(depthSum([[1,1],2,[1,1]]) === 10 , [[1,1],2,[1,1]])
CodeGPT version
2.7.1-233
Operating System
macOS