Skip to content

Commit 3ac92ef

Browse files
marco-ippolitoaduh95
authored andcommitted
lib: add typescript support to STDIN eval
PR-URL: #56359 Backport-PR-URL: #56912 Reviewed-By: Jordan Harband <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Pietro Marchini <[email protected]>
1 parent 174d88e commit 3ac92ef

File tree

7 files changed

+261
-12
lines changed

7 files changed

+261
-12
lines changed

doc/api/typescript.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,10 @@ import { fn, FnParams } from './fn.ts';
153153

154154
### Non-file forms of input
155155

156-
Type stripping can be enabled for `--eval`. The module system
156+
Type stripping can be enabled for `--eval` and STDIN. The module system
157157
will be determined by `--input-type`, as it is for JavaScript.
158158

159-
TypeScript syntax is unsupported in the REPL, STDIN input, `--print`, `--check`, and
159+
TypeScript syntax is unsupported in the REPL, `--check`, and
160160
`inspect`.
161161

162162
### Source maps

lib/internal/main/eval_stdin.js

+28-7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ const { getOptionValue } = require('internal/options');
1111

1212
const {
1313
evalModuleEntryPoint,
14+
evalTypeScript,
15+
parseAndEvalCommonjsTypeScript,
16+
parseAndEvalModuleTypeScript,
1417
evalScript,
1518
readStdin,
1619
} = require('internal/process/execution');
@@ -25,14 +28,32 @@ readStdin((code) => {
2528

2629
const print = getOptionValue('--print');
2730
const shouldLoadESM = getOptionValue('--import').length > 0;
28-
if (getOptionValue('--input-type') === 'module' ||
29-
(getOptionValue('--experimental-default-type') === 'module' && getOptionValue('--input-type') !== 'commonjs')) {
31+
const inputType = getOptionValue('--input-type');
32+
const tsEnabled = getOptionValue('--experimental-strip-types');
33+
if (inputType === 'module' ||
34+
(getOptionValue('--experimental-default-type') === 'module' &&
35+
inputType !== 'commonjs')) {
3036
evalModuleEntryPoint(code, print);
37+
} else if (inputType === 'module-typescript' && tsEnabled) {
38+
parseAndEvalModuleTypeScript(code, print);
3139
} else {
32-
evalScript('[stdin]',
33-
code,
34-
getOptionValue('--inspect-brk'),
35-
print,
36-
shouldLoadESM);
40+
41+
let evalFunction;
42+
if (inputType === 'commonjs') {
43+
evalFunction = evalScript;
44+
} else if (inputType === 'commonjs-typescript' && tsEnabled) {
45+
evalFunction = parseAndEvalCommonjsTypeScript;
46+
} else if (tsEnabled) {
47+
evalFunction = evalTypeScript;
48+
} else {
49+
// Default to commonjs.
50+
evalFunction = evalScript;
51+
}
52+
53+
evalFunction('[stdin]',
54+
code,
55+
getOptionValue('--inspect-brk'),
56+
print,
57+
shouldLoadESM);
3758
}
3859
});

test/fixtures/eval/stdin_messages.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require('../../common');
2626
const spawn = require('child_process').spawn;
2727

2828
function run(cmd, strict, cb) {
29-
const args = [];
29+
const args = ['--experimental-strip-types'];
3030
if (strict) args.push('--use_strict');
3131
args.push('-p');
3232
const child = spawn(process.execPath, args);

test/fixtures/eval/stdin_messages.snapshot

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
[stdin]:1
33
with(this){__filename}
44
^^^^
5-
6-
SyntaxError: Strict mode code may not include a with statement
5+
x The 'with' statement is not supported. All symbols in a 'with' block will have type 'any'.
6+
,----
7+
1 | with(this){__filename}
8+
: ^^^^
9+
`----
710

811

12+
SyntaxError: Strict mode code may not include a with statement
913

1014

1115

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
'use strict';
2+
3+
require('../../common');
4+
5+
const spawn = require('child_process').spawn;
6+
7+
function run(cmd, strict, cb) {
8+
const args = ['--disable-warning=ExperimentalWarning', '--experimental-strip-types'];
9+
if (strict) args.push('--use_strict');
10+
args.push('-p');
11+
const child = spawn(process.execPath, args);
12+
child.stdout.pipe(process.stdout);
13+
child.stderr.pipe(process.stdout);
14+
child.stdin.end(cmd);
15+
child.on('close', cb);
16+
}
17+
18+
const queue =
19+
[
20+
'enum Foo{};',
21+
'throw new SyntaxError("hello")',
22+
'const foo;',
23+
'let x: number = 100;x;',
24+
'const foo: string = 10;',
25+
'function foo(){};foo<Number>(1);',
26+
'interface Foo{};const foo;',
27+
'function foo(){ await Promise.resolve(1)};',
28+
];
29+
30+
function go() {
31+
const c = queue.shift();
32+
if (!c) return console.log('done');
33+
run(c, false, function () {
34+
run(c, true, go);
35+
});
36+
}
37+
38+
go();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,185 @@
1+
[stdin]:1
2+
enum Foo{};
3+
^^^^
4+
x TypeScript enum is not supported in strip-only mode
5+
,----
6+
1 | enum Foo{};
7+
: ^^^^^^^^^^
8+
`----
9+
10+
11+
SyntaxError: Unexpected reserved word
12+
13+
14+
15+
16+
17+
18+
19+
20+
21+
Node.js *
22+
[stdin]:1
23+
enum Foo{};
24+
^^^^
25+
x TypeScript enum is not supported in strip-only mode
26+
,----
27+
1 | enum Foo{};
28+
: ^^^^^^^^^^
29+
`----
30+
31+
32+
SyntaxError: Unexpected reserved word
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
Node.js *
43+
[stdin]:1
44+
throw new SyntaxError("hello")
45+
^
46+
47+
SyntaxError: hello
48+
49+
50+
51+
52+
53+
54+
55+
56+
57+
58+
59+
Node.js *
60+
[stdin]:1
61+
throw new SyntaxError("hello")
62+
^
63+
64+
SyntaxError: hello
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
76+
Node.js *
77+
[stdin]:1
78+
const foo;
79+
^^^
80+
81+
SyntaxError: Missing initializer in const declaration
82+
83+
84+
85+
86+
87+
88+
89+
90+
91+
Node.js *
92+
[stdin]:1
93+
const foo;
94+
^^^
95+
96+
SyntaxError: Missing initializer in const declaration
97+
98+
99+
100+
101+
102+
103+
104+
105+
106+
Node.js *
107+
100
108+
100
109+
undefined
110+
undefined
111+
false
112+
false
113+
[stdin]:1
114+
;const foo;
115+
^^^
116+
117+
SyntaxError: Missing initializer in const declaration
118+
119+
120+
121+
122+
123+
124+
125+
126+
127+
Node.js *
128+
[stdin]:1
129+
;const foo;
130+
^^^
131+
132+
SyntaxError: Missing initializer in const declaration
133+
134+
135+
136+
137+
138+
139+
140+
141+
142+
Node.js *
143+
[stdin]:1
144+
function foo(){ await Promise.resolve(1)};
145+
^^^^^
146+
x await isn't allowed in non-async function
147+
,----
148+
1 | function foo(){ await Promise.resolve(1)};
149+
: ^^^^^^^
150+
`----
151+
152+
153+
SyntaxError: await is only valid in async functions and the top level bodies of modules
154+
155+
156+
157+
158+
159+
160+
161+
162+
163+
Node.js *
164+
[stdin]:1
165+
function foo(){ await Promise.resolve(1)};
166+
^^^^^
167+
x await isn't allowed in non-async function
168+
,----
169+
1 | function foo(){ await Promise.resolve(1)};
170+
: ^^^^^^^
171+
`----
172+
173+
174+
SyntaxError: await is only valid in async functions and the top level bodies of modules
175+
176+
177+
178+
179+
180+
181+
182+
183+
184+
Node.js *
185+
done

test/parallel/test-node-output-eval.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ describe('eval output', { concurrency: true }, () => {
2424
const tests = [
2525
{ name: 'eval/eval_messages.js' },
2626
{ name: 'eval/stdin_messages.js' },
27+
{ name: 'eval/stdin_typescript.js' },
2728
];
2829

2930
for (const { name } of tests) {

0 commit comments

Comments
 (0)