(expr)
| 86661 | return typeOfObjectLiteral && getPropertyOfType(typeOfObjectLiteral, location.escapedText); |
| 86662 | } |
| 86663 | function getRegularTypeOfExpression(expr) { |
| 86664 | if (ts.isRightSideOfQualifiedNameOrPropertyAccess(expr)) { |
| 86665 | expr = expr.parent; |
| 86666 | } |
| 86667 | return getRegularTypeOfLiteralType(getTypeOfExpression(expr)); |
| 86668 | } |
| 86669 | /** |
| 86670 | * Gets either the static or instance type of a class element, based on |
| 86671 | * whether the element is declared as "static". |
no test coverage detected