swc/ecmascript/codegen/tests/references/9681f5d844d7acd0.js
강동윤 30af06bb70
Ast (#513)
swc_ecmascript:
 - add `ExprStmt`.
 - change type of regex.expression and regex.flags.
2019-12-16 18:08:21 +09:00

25 lines
273 B
JavaScript

(a)=>b
; // 1 args
(a, b)=>c
; // n args
()=>b
; // 0 args
(a)=>(b)=>c
; // func returns func returns func
(a)=>((b)=>c
)
; // So these parens are dropped
()=>(b, c)=>d
; // func returns func returns func
(a)=>{
return b;
};
(a)=>'e'
; // Dropping the parens