Skip to content
This repository has been archived by the owner on Feb 24, 2022. It is now read-only.

can scripted lookup symbols across different files #295

Open
larryhe opened this issue Feb 8, 2014 · 0 comments
Open

can scripted lookup symbols across different files #295

larryhe opened this issue Feb 8, 2014 · 0 comments

Comments

@larryhe
Copy link

larryhe commented Feb 8, 2014

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;
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant