| OLD | NEW |
| 1 40 columns | | 1 40 columns | |
| 2 >>> one line between script and library | 2 >>> one line between script and library |
| 3 #!script | 3 #!script |
| 4 library foo; | 4 library foo; |
| 5 <<< | 5 <<< |
| 6 #!script | 6 #!script |
| 7 library foo; | 7 library foo; |
| 8 >>> multiple lines between script and library | 8 >>> multiple lines between script and library |
| 9 #!script | 9 #!script |
| 10 | 10 |
| 11 | 11 |
| 12 | 12 |
| 13 library foo; | 13 library foo; |
| 14 <<< | 14 <<< |
| 15 #!script | 15 #!script |
| 16 | |
| 17 library foo; | 16 library foo; |
| 18 >>> one line between script and import | 17 >>> one line between script and import |
| 19 #!script | 18 #!script |
| 20 import 'foo'; | 19 import 'foo'; |
| 21 <<< | 20 <<< |
| 22 #!script | 21 #!script |
| 23 import 'foo'; | 22 import 'foo'; |
| 24 >>> multiple lines between script and import | 23 >>> multiple lines between script and import |
| 25 #!script | 24 #!script |
| 26 | 25 |
| 27 | 26 |
| 28 | 27 |
| 29 import 'foo'; | 28 import 'foo'; |
| 30 <<< | 29 <<< |
| 31 #!script | 30 #!script |
| 32 | |
| 33 import 'foo'; | 31 import 'foo'; |
| 34 >>> one line between script and line comment | 32 >>> one line between script and line comment |
| 35 #!script | 33 #!script |
| 36 // comment | 34 // comment |
| 37 <<< | 35 <<< |
| 38 #!script | 36 #!script |
| 39 // comment | 37 // comment |
| 40 >>> multiple lines between script and line comment | 38 >>> multiple lines between script and line comment |
| 41 #!script | 39 #!script |
| 42 | 40 |
| 43 | 41 |
| 44 | 42 |
| 45 // comment | 43 // comment |
| 46 <<< | 44 <<< |
| 47 #!script | 45 #!script |
| 48 | |
| 49 // comment | 46 // comment |
| 50 >>> one line between script and block comment | 47 >>> one line between script and block comment |
| 51 #!script | 48 #!script |
| 52 /* comment */ | 49 /* comment */ |
| 53 <<< | 50 <<< |
| 54 #!script | 51 #!script |
| 55 /* comment */ | 52 /* comment */ |
| 56 >>> multiple lines between script and block comment | 53 >>> multiple lines between script and block comment |
| 57 #!script | 54 #!script |
| 58 | 55 |
| 59 | 56 |
| 60 | 57 |
| 61 /* comment */ | 58 /* comment */ |
| 62 <<< | 59 <<< |
| 63 #!script | 60 #!script |
| 64 | |
| 65 /* comment */ | 61 /* comment */ |
| OLD | NEW |