Skip to content

Commit

Permalink
i suck at git
Browse files Browse the repository at this point in the history
  • Loading branch information
mgiuffrida committed Feb 4, 2016
1 parent f960f25 commit b40f639
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/standard/effectBuilder.html
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
// method expressions are of the form: `name([arg1, arg2, .... argn])`
_parseMethod: function(expression) {
// tries to match valid javascript property names
var m = expression.match(/([^\s]+?)\((.*)\)/);
var m = expression.match(/([^\s]+?)\(([\s\S]*)\)/);
if (m) {
var sig = { method: m[1], static: true };
if (m[2].trim()) {
Expand Down

0 comments on commit b40f639

Please sign in to comment.