Don't special-case tags files distributed with Geany
[geany-mirror.git] / tests / ctags / js-scope.js
blob4ad16b672e7dd893c7b1e08e822728b57f63b5f5
2 function A() {
3     this.a = 1;
6 A.prototype = {
7     m1 : function() {
8         this.a = 2;
10         foo.bar.baz.hello(1);
11         foo.bar.baz.hello(2);
12         foo.bar.baz.hello(3);
13     },
14     
15     m2: function() {
16         return this.a;
17     },