| 155 | function mapperFor(elt, t) { |
| 156 | const p = t.identifier('parsers'); |
| 157 | const wrap = identifier => t.memberExpression(p, identifier); |
| 158 | |
| 159 | if (t.isNumberTypeAnnotation(elt)) { |
| 160 | return t.callExpression(wrap(t.identifier('numberParser')), [t.stringLiteral(elt.name)]); |
no outgoing calls
no test coverage detected
searching dependent graphs…