(before, parameters, types, options)
| 65 | } |
| 66 | |
| 67 | build(before, parameters, types, options) { |
| 68 | const keyword = builders.map(([x, fn]) => ({ fn, i: before.search(x) })).sort((a, b) => a.i - b.i).pop() |
| 69 | return keyword.i === -1 |
| 70 | ? escapeIdentifiers(this.first, options) |
| 71 | : keyword.fn(this.first, this.rest, parameters, types, options) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | module.exports.handleValue = handleValue;function handleValue(x, parameters, types, options) { |
no test coverage detected