Add detection of PKGBUILD files as Shell scripts
[geany-mirror.git] / tests / ctags / bug1950327.js
blob9021ec0d0003009d92c2e7bf910f97dc40b9d1d7
1 // I've attached the simple test case as bugDemo.js. Trigger the bug by\r
2 // uncommenting line 8. Attached are tags files with line 21 commented/not\r
3 // commented. This is the current tip, svn r663.\r
4 //\r
5 // When the container.dirtyTab line is uncommented you see these methods:\r
6 //     TabChrome.createTabTile\r
7 //     TabChrome.init\r
8 //\r
9 // When the container.dirtyTab line is commented you see these methods:\r
10 //     TabChrome.createTabTile\r
11 //     TabChrome.destroyTabTile\r
12 //     TabChrome.init\r
13 //\r
14 TabChrome.prototype = {\r
15         init: function() \r
16         {\r
17                 this.browserMap = new Object();\r
18         },\r
19         createTabTile: function(browser) \r
20         {\r
21                 //container.dirtyTab = {'url': false, 'title':false, 'snapshot':false, '*': false}              \r
22                 return container;\r
23         },\r
24         destroyTabTile: function(tile)\r
25         {\r
26         }\r
27 }\r
28 Different.prototype = {\r
29         init: function() \r
30         {\r
31                 this.browserMap = new Object();\r
32         },\r
33         createTabTile: function(browser) \r
34         {\r
35                 container.dirtyTab = {'url': false, 'title':false, 'snapshot':false, '*': false}                \r
36                 return container;\r
37         },\r
38         destroyTabTile: function(tile)\r
39         {\r
40         }\r
41 }\r