|
1 | 1 | "use strict";
|
2 | 2 |
|
3 |
| -var validFunction = require("../valid-function"); |
| 3 | +var isValue = require("../../object/is-value") |
| 4 | + , esniff = require("esniff") |
| 5 | + , validFunction = require("../valid-function"); |
4 | 6 |
|
5 |
| -var re1 = /^\s*function[\0-')-\uffff]*\(([\0-(*-\uffff]*)\)\s*\{([\0-\uffff]*)\}\s*$/ |
6 |
| - , re2 = /^\s*\(?([\0-'*-\uffff]*)\)?\s*=>\s*(\{?[\0-\uffff]*\}?)\s*$/; |
| 7 | +var classRe = /^\s*class[\s{/}]/; |
7 | 8 |
|
8 | 9 | module.exports = function () {
|
9 |
| - var str = String(validFunction(this)), data = str.match(re1); |
10 |
| - if (!data) { |
11 |
| - data = str.match(re2); |
12 |
| - if (!data) throw new Error("Unrecognized string format"); |
13 |
| - data[1] = data[1].trim(); |
14 |
| - if (data[2][0] === "{") data[2] = data[2].trim().slice(1, -1); |
15 |
| - } |
16 |
| - return { args: data[1], body: data[2] }; |
| 10 | + var str = String(validFunction(this)); |
| 11 | + if (classRe.test(str)) throw new Error("Class methods are not supported"); |
| 12 | + |
| 13 | + var argsStartIndex |
| 14 | + , argsEndIndex |
| 15 | + , bodyStartIndex |
| 16 | + , bodyEndReverseIndex = -1 |
| 17 | + , shouldTrimArgs = false; |
| 18 | + |
| 19 | + esniff(str, function (emitter, accessor) { |
| 20 | + emitter.once("trigger:(", function () { argsStartIndex = accessor.index + 1; }); |
| 21 | + emitter.once("trigger:=", function () { |
| 22 | + if (isValue(argsStartIndex)) return; |
| 23 | + argsStartIndex = 0; |
| 24 | + argsEndIndex = accessor.index; |
| 25 | + shouldTrimArgs = true; |
| 26 | + if (!accessor.skipCodePart("=>")) { |
| 27 | + throw new Error("Unexpected function string: " + str); |
| 28 | + } |
| 29 | + accessor.skipWhitespace(); |
| 30 | + if (!accessor.skipCodePart("{")) bodyEndReverseIndex = Infinity; |
| 31 | + bodyStartIndex = accessor.index; |
| 32 | + }); |
| 33 | + emitter.on("trigger:)", function () { |
| 34 | + if (accessor.scopeDepth) return; |
| 35 | + argsEndIndex = accessor.index; |
| 36 | + accessor.skipCodePart(")"); |
| 37 | + accessor.skipWhitespace(); |
| 38 | + if (accessor.skipCodePart("=>")) { |
| 39 | + accessor.skipWhitespace(); |
| 40 | + if (!accessor.skipCodePart("{")) bodyEndReverseIndex = Infinity; |
| 41 | + } else if (!accessor.skipCodePart("{")) { |
| 42 | + throw new Error("Unexpected function string: " + str); |
| 43 | + } |
| 44 | + bodyStartIndex = accessor.index; |
| 45 | + accessor.stop(); |
| 46 | + }); |
| 47 | + }); |
| 48 | + |
| 49 | + var argsString = str.slice(argsStartIndex, argsEndIndex); |
| 50 | + if (shouldTrimArgs) argsString = argsString.trim(); |
| 51 | + return { args: argsString, body: str.slice(bodyStartIndex, bodyEndReverseIndex) }; |
17 | 52 | };
|
0 commit comments