mirror of
https://github.com/swc-project/swc.git
synced 2024-12-11 07:35:15 +03:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
|
// @allowJs: true
|
||
|
// @checkJs: true
|
||
|
// @noEmit: true
|
||
|
// @Filename: callOfPropertylessConstructorFunction.js
|
||
|
/**
|
||
|
* @constructor
|
||
|
*/
|
||
|
function Dependency(j) {
|
||
|
return j
|
||
|
}
|
||
|
Dependency({})
|