(idx: number)
| 112 | if (!moduleName) return results; |
| 113 | |
| 114 | const lineOf = (idx: number): number => { |
| 115 | let line = 1; |
| 116 | for (let i = 0; i < idx && i < source.length; i++) if (source.charCodeAt(i) === 10) line++; |
| 117 | return line; |
| 118 | }; |
| 119 | |
| 120 | // RCT_EXPORT_METHOD(selectorFirstKw:(args)…) |
| 121 | // The first keyword (everything up to the first `:` or open paren) is the |
no outgoing calls
no test coverage detected