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

can scripted lookup symbols across different files #295

@larryhe

Description

@larryhe

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions