Skip to content

Commit c102328

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

File tree

6 files changed

+266
-9
lines changed

6 files changed

+266
-9
lines changed

doc/api/typescript.md

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

157157
### Non-file forms of input
158158

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

162-
TypeScript syntax is unsupported in the REPL, STDIN input, `--print`, `--check`, and
162+
TypeScript syntax is unsupported in the REPL, `--check`, and
163163
`inspect`.
164164

165165
### Source maps

lib/internal/main/eval_stdin.js

+26-6
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,13 +28,30 @@ readStdin((code) => {
2528

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

test/fixtures/eval/stdin_messages.snapshot

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
[stdin]:1
33
with(this){__filename}
44
^^^^
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+
`----
510

6-
SyntaxError: Strict mode code may not include a with statement
711

12+
Caused by:
13+
failed to parse
814

15+
SyntaxError: Strict mode code may not include a with statement
916

1017

1118

+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'];
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,191 @@
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+
Caused by:
154+
failed to parse
155+
156+
SyntaxError: await is only valid in async functions and the top level bodies of modules
157+
158+
159+
160+
161+
162+
163+
164+
165+
166+
Node.js *
167+
[stdin]:1
168+
function foo(){ await Promise.resolve(1)};
169+
^^^^^
170+
x await isn't allowed in non-async function
171+
,----
172+
1 | function foo(){ await Promise.resolve(1)};
173+
: ^^^^^^^
174+
`----
175+
176+
177+
Caused by:
178+
failed to parse
179+
180+
SyntaxError: await is only valid in async functions and the top level bodies of modules
181+
182+
183+
184+
185+
186+
187+
188+
189+
190+
Node.js *
191+
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)