db0e02cd4ddb651ce4b3a45cf046d64370eaf055
[platform/framework/web/crosswalk-tizen.git] /
1 foo();
2
3 bar(1,'dolor');ipsum(3,{amet:true},'foo');
4
5 dolor=foo(2)
6
7 // should remove line breaks
8 foo(a,b,
9 c,d)
10
11
12 // it should indent chained calls if there is a line break between each call
13 foo.bar()
14                 .ipsum()
15 .dolor();
16
17 function foo() {
18 dolor
19     .amet()
20                 .maecennas();
21 }
22
23 returned.promise().done(foo)
24 .done(newDefer.resolve)
25 .fail(newDefer.reject)
26 .progress(newDefer.notify);
27