(name)
| 27199 | return array ? createNodeArray(array) : undefined; |
| 27200 | } |
| 27201 | function asName(name) { |
| 27202 | return typeof name === "string" ? createIdentifier(name) : |
| 27203 | name; |
| 27204 | } |
| 27205 | function asExpression(value) { |
| 27206 | return typeof value === "string" ? createStringLiteral(value) : |
| 27207 | typeof value === "number" ? createNumericLiteral(value) : |
no test coverage detected