Please extend jscript.hrc so that it recognizes javascript functions defined this way:
TabGroupsManager.GroupBarDnDObserver.prototype.createEventListener=function(){
.....
}
I modified jscript.hrc like this:
--- jscript.hrc.orig 2011-09-14 12:47:34.000000000 +0200
+++ jscript.hrc 2013-02-07 10:35:38.693649800 +0100
@@ -103,6 +103,7 @@
<block start="/\/\//" end="/\M(<\/scr|$)/i" scheme="jComment" region="Comment"/>
<block start="/\/\*/" end="/\*\//" scheme="jComment" region="Comment" region00="PairStart" region10="PairEnd"/>
<regexp match="/^\M\s* function \s+ ([\w_]+) /x" region1="Function"/>
+ <regexp match="/\b ([\w_]+) \s* = \s* function\b /x" region1="Function"/>
<inherit scheme="PairedBrackets">
<virtual scheme="PairedBrackets" subst-scheme="jScript"/>
</inherit>