mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
182 B
JavaScript
13 lines
182 B
JavaScript
import { foo } from './esLib';
|
|
let x1 = foo;
|
|
|
|
if (!foo) {
|
|
import { foo } from './nodeJsLib';
|
|
let x2 = foo;
|
|
}
|
|
|
|
function tst() {
|
|
import { foo } from './esLib';
|
|
let x3 = foo;
|
|
}
|