1 function simple(x,y){return x+y;}
3 function simple_2(a,b,c)
9 function foo( x ){ return x; }
11 // test space on params
14 return 'baz'; // test comment
19 // trailing white space
21 function fn(){ function deep() {
38 // start test keepEmptyLines
42 // end test keepEmptyLines
44 // test a bug related with indentation and multiple consecutive functions
45 function outter(){ function a1(){return true}function a2(val){return (val*2)} }
48 // issue #29 : return + line break + ternary
54 function multiLineReturn() {
60 function expressionReturn() {
74 function chainedReturn() {
75 return deferred.promise
80 function multiLineParams(
87 function defaultParams(z, x = 1, y=2) {