https://bugzilla.wikimedia.org/show_bug.cgi?id=24159
--- Comment #6 from Chad H. <[email protected]> 2010-07-02 19:46:24 UTC --- $ grep -irPn '@[a-z_]+\(' . This only includes global function calls, which isn't the only place @ can be used :) $ grep -irPn '@[a-z_]+::' Yields 1 static method call. Similar grep for method on object calls came back negative, yay :) $ grep -irn '@\$' . | grep -v .svn | grep -v 'Binary file' Gives you a bunch of variable accessing with @ that I didn't include above :( -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
