mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8 lines
96 B
JavaScript
8 lines
96 B
JavaScript
|
const a = 99;
|
||
|
if (true) {
|
||
|
const b = 101;
|
||
|
} else {
|
||
|
const c = 102;
|
||
|
}
|
||
|
throw new Error('test');
|