(node)
| 166231 | */ |
| 166232 | /* @internal */ |
| 166233 | function getContainingObjectLiteralElement(node) { |
| 166234 | var element = getContainingObjectLiteralElementWorker(node); |
| 166235 | return element && (ts.isObjectLiteralExpression(element.parent) || ts.isJsxAttributes(element.parent)) ? element : undefined; |
| 166236 | } |
| 166237 | ts.getContainingObjectLiteralElement = getContainingObjectLiteralElement; |
| 166238 | function getContainingObjectLiteralElementWorker(node) { |
| 166239 | switch (node.kind) { |
no test coverage detected