Difference between revisions of "Function lists"
From EditPlus Wiki
(Deleting Spam) |
m |
||
(11 intermediate revisions by 10 users not shown) | |||
Line 1: | Line 1: | ||
− | == | + | ==JavaScript== |
− | + | ||
− | + | Both function pattern regular expressions support partial display using the first tagged expression in the Function Pattern dialog. | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ^[ \t]*function[ \t](.*\(.*\)).*$ | |
+ | ^[ \t]*([^:=]+[:=] function ?\(.*\)).* | ||
− | + | These expressions will find functions of the following forms in your file: | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | function foobarspaz(arg1, arg2) {} | |
− | + | foobarspaz: function(arg1, arg2) {} | |
− | + | foobarspaz = function(arg1, arg2) {} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | = | + | |
− | + | ||
− | + | ||
− | + | ||
==PHP5== | ==PHP5== |
Latest revision as of 21:24, 25 March 2010
JavaScript
Both function pattern regular expressions support partial display using the first tagged expression in the Function Pattern dialog.
^[ \t]*function[ \t](.*\(.*\)).*$ ^[ \t]*([^:=]+[:=] function ?\(.*\)).*
These expressions will find functions of the following forms in your file:
function foobarspaz(arg1, arg2) {} foobarspaz: function(arg1, arg2) {} foobarspaz = function(arg1, arg2) {}
PHP5
When using classes in PHP5 the function keyword can be preceded by "public", "private" or "protected". The following updated regex takes account of this change from PHP4. If you don't know why you might need this, then you probably don't.
^[ \t]*(public[ \t]|protected[ \t]|private[ \t]|)[ \t]*function[ \t].*\([^;]*$
To also show classes in the function list use the following:
^[ \t]*((public[ \t]|protected[ \t]|private[ \t]|)[ \t]*function[ \t].*\()|(class[ \t].*\{)[^;]*$