(expr: Expression | ConfigExpr | undefined)
| 381 | } |
| 382 | |
| 383 | function getArray(expr: Expression | ConfigExpr | undefined) { |
| 384 | return isArrayExpr(expr) || isConfigArrayExpr(expr) ? expr.items : undefined; |
| 385 | } |
| 386 | |
| 387 | /** |
| 388 | * Gets the value of the argument with the given name from the given attribute. Returns `undefined` if no such argument is found or if the argument value cannot be determined. |
no test coverage detected