(s *scanner.Scanner, containingNode *ast.Node)
| 13 | } |
| 14 | |
| 15 | func scanNavigationToken(s *scanner.Scanner, containingNode *ast.Node) ast.Kind { |
| 16 | token := s.Token() |
| 17 | if shouldRescanLessThanLessThanToken(s, containingNode, token) { |
| 18 | return s.ReScanJsxToken(true /*allowMultilineJsxText*/) |
| 19 | } |
| 20 | return token |
| 21 | } |
| 22 | |
| 23 | func GetTouchingPropertyName(sourceFile *ast.SourceFile, position int) *ast.Node { |
| 24 | return getTokenAtPosition(sourceFile, position, false /*allowPositionInLeadingTrivia*/, func(node *ast.Node) bool { |
no test coverage detected