(node *Node)
| 2135 | } |
| 2136 | |
| 2137 | func IsWhitespaceOnlyJsxText(node *Node) bool { |
| 2138 | return node.Kind == KindJsxText && node.AsJsxText().ContainsOnlyTriviaWhiteSpaces |
| 2139 | } |
| 2140 | |
| 2141 | func GetNewTargetContainer(node *Node) *Node { |
| 2142 | container := GetThisContainer(node, false /*includeArrowFunctions*/, false /*includeClassComputedPropertyName*/) |
no test coverage detected