mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
|
(// 1 argsa)=>b;
|
||
|
(// n argsa, // n argsb)=>c;
|
||
|
()=>b;
|
||
|
(// func returns func returns funca)=>(// func returns func returns funcb)=>c;
|
||
|
(// So these parens are droppeda)=>((// So these parens are droppedb)=>c);
|
||
|
()=>(// func returns func returns funcb, // func returns func returns funcc)=>d;
|
||
|
(a)=>{
|
||
|
return b;
|
||
|
};
|
||
|
(// Dropping the parensa)=>'e';
|