This repository was archived by the owner on Sep 6, 2021. It is now read-only.
This repository was archived by the owner on Sep 6, 2021. It is now read-only.
jump to definition inside quick editor on a function not working #3951
Open
Description
- create a function in file1.js(under src/extensions/default/JavaScriptCodeHints/unittest-files/basic-test-files).
function callOtherMethods() {
testTryCatch();
}
function testTryCatch(){
}
2.open index.html(under src/extensions/default/JavaScriptCodeHints/unittest-files/basic-test-files), add callOtherMethods();
below function foo(), at line 28, save it.
3.open quick editor on callOtherMethods();
->quick editor shows up. Focus on testTryCatch();`, try jump to definition
Actual result: it doesn't go to file1.js, just highlight {}
Expect: jump to definition testTryCatch()
in file1.js