2022-06-19 05:04:48 -05:00
|
|
|
import { skipIfInspectorDisabled } from '../common/index.mjs';
|
2022-05-01 12:51:14 +09:00
|
|
|
|
2022-06-19 05:04:48 -05:00
|
|
|
skipIfInspectorDisabled();
|
2022-05-01 12:51:14 +09:00
|
|
|
|
2022-06-19 05:04:48 -05:00
|
|
|
import { path } from '../common/fixtures.mjs';
|
|
|
|
import startCLI from '../common/debugger.js';
|
2022-05-01 12:51:14 +09:00
|
|
|
|
2022-06-19 05:04:48 -05:00
|
|
|
import assert from 'assert';
|
2022-05-01 12:51:14 +09:00
|
|
|
|
2022-06-19 05:04:48 -05:00
|
|
|
const cli = startCLI([path('debugger', 'three-lines.js')]);
|
2022-05-01 12:51:14 +09:00
|
|
|
|
2022-06-19 05:04:48 -05:00
|
|
|
try {
|
2022-06-04 12:55:06 -04:00
|
|
|
await cli.waitForInitialBreak();
|
|
|
|
await cli.waitForPrompt();
|
|
|
|
await cli.command('exec a = function func() {}; a;');
|
|
|
|
assert.match(cli.output, /\[Function: func\]/);
|
|
|
|
await cli.command('exec a = function func () {}; a;');
|
|
|
|
assert.match(cli.output, /\[Function\]/);
|
|
|
|
await cli.command('exec a = function() {}; a;');
|
|
|
|
assert.match(cli.output, /\[Function: function\]/);
|
|
|
|
await cli.command('exec a = () => {}; a;');
|
|
|
|
assert.match(cli.output, /\[Function\]/);
|
|
|
|
await cli.command('exec a = function* func() {}; a;');
|
|
|
|
assert.match(cli.output, /\[GeneratorFunction: func\]/);
|
|
|
|
await cli.command('exec a = function *func() {}; a;');
|
|
|
|
assert.match(cli.output, /\[GeneratorFunction: \*func\]/);
|
|
|
|
await cli.command('exec a = function*func() {}; a;');
|
|
|
|
assert.match(cli.output, /\[GeneratorFunction: function\*func\]/);
|
|
|
|
await cli.command('exec a = function * func() {}; a;');
|
|
|
|
assert.match(cli.output, /\[GeneratorFunction\]/);
|
2022-06-19 05:04:48 -05:00
|
|
|
} finally {
|
|
|
|
cli.quit();
|
|
|
|
}
|