mirror of
https://github.com/swc-project/swc.git
synced 2024-12-27 15:42:51 +03:00
b887b30092
**Description:** This is required for https://github.com/swc-project/swc/pull/6981 and https://github.com/swc-project/swc/pull/6950
12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
// @checkJs: true
|
|
// @allowJs: true
|
|
// @noEmit: true
|
|
// @filename: /a.js
|
|
|
|
/**
|
|
* @param {{ cause?: string }} [options]
|
|
*/
|
|
function foo({ cause } = {}) {
|
|
return cause;
|
|
}
|