You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.
It looks like that scripted can't jump to the symbol definition correctly across different files. for example, i have below two files, on line 2 of foo.js, I can't jump to bar1 definition which is bar.js file. but on line 3 of foo.js, i can correctly jump to foo2 definition. Is this the restriction of editor? Thanks.
foo.js
function foo1(){
var a = bar1(); //line 2
foo2();//line3
}
function foo2(){
console.log('foo 2 running');
}
and
bar.js
function bar1(){
return 10;
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It looks like that scripted can't jump to the symbol definition correctly across different files. for example, i have below two files, on line 2 of foo.js, I can't jump to bar1 definition which is bar.js file. but on line 3 of foo.js, i can correctly jump to foo2 definition. Is this the restriction of editor? Thanks.
foo.js
function foo1(){
var a = bar1(); //line 2
foo2();//line3
}
function foo2(){
console.log('foo 2 running');
}
and
bar.js
function bar1(){
return 10;
}
The text was updated successfully, but these errors were encountered: