TypeScript/tests/baselines/reference/requireOfJsonFileInJsFile.symbols
Nathan Shively-Sanders aba932aefa
Create synthetic exports symbol for commonjs module (#42655)
* Commonjs module:create synthetic exports symbol

Previously, the `module` identifier in commonjs modules got a synthetic
type with a single property `exports`. The exports property reused the
file's symbol, which, for a module file, gives the correct exported
properties.

However, the name of this symbol was still the filename of the file, not
`exports`. This PR creates a synthetic symbol for `exports` by copying
in a similar way to esModuleInterop's `default` symbol in
`resolveESModuleSymbol` (although the intent there is to strip off
signatures from the symbol).

* correct parent of synthetic symbol
2021-02-05 10:56:03 -08:00

51 lines
1.5 KiB
Plaintext

=== /user.js ===
const json0 = require("./json.json");
>json0 : Symbol(json0, Decl(user.js, 0, 5))
>require : Symbol(require)
>"./json.json" : Symbol("/json", Decl(json.json, 0, 0))
json0.b; // Error (good)
>json0 : Symbol(json0, Decl(user.js, 0, 5))
/** @type {{ b: number }} */
const json1 = require("./json.json"); // No error (bad)
>json1 : Symbol(json1, Decl(user.js, 4, 5))
>require : Symbol(require)
>"./json.json" : Symbol("/json", Decl(json.json, 0, 0))
json1.b; // No error (OK since that's the type annotation)
>json1.b : Symbol(b, Decl(user.js, 3, 12))
>json1 : Symbol(json1, Decl(user.js, 4, 5))
>b : Symbol(b, Decl(user.js, 3, 12))
const js0 = require("./js.js");
>js0 : Symbol(js0, Decl(user.js, 7, 5))
>require : Symbol(require)
>"./js.js" : Symbol("/js", Decl(js.js, 0, 0))
json0.b; // Error (good)
>json0 : Symbol(json0, Decl(user.js, 0, 5))
/** @type {{ b: number }} */
const js1 = require("./js.js"); // Error (good)
>js1 : Symbol(js1, Decl(user.js, 11, 5))
>require : Symbol(require)
>"./js.js" : Symbol("/js", Decl(js.js, 0, 0))
js1.b;
>js1.b : Symbol(b, Decl(user.js, 10, 12))
>js1 : Symbol(js1, Decl(user.js, 11, 5))
>b : Symbol(b, Decl(user.js, 10, 12))
=== /json.json ===
{ "a": 0 }
>"a" : Symbol("a", Decl(json.json, 0, 1))
=== /js.js ===
module.exports = { a: 0 };
>module.exports : Symbol(module.exports, Decl(js.js, 0, 0))
>module : Symbol(export=, Decl(js.js, 0, 0))
>exports : Symbol(export=, Decl(js.js, 0, 0))
>a : Symbol(a, Decl(js.js, 0, 18))