(value ast.Node)
| 52 | } |
| 53 | |
| 54 | func stringNode(value ast.Node) *ast.StringNode { |
| 55 | if s, ok := resolveAnchor(value).(*ast.StringNode); ok { |
| 56 | return s |
| 57 | } |
| 58 | return nil |
| 59 | } |
| 60 | |
| 61 | func createdNestedLink(folderAbsolutePath string, wslDollarSign bool, serviceNode *ast.MappingValueNode, parent, child string) *protocol.DocumentLink { |
| 62 | if resolveAnchor(serviceNode.Key).GetToken().Value == parent { |
no test coverage detected