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