(folderAbsolutePath string, wslDollarSign bool, serviceNode *ast.MappingValueNode)
| 169 | } |
| 170 | |
| 171 | func createObjectFileLink(folderAbsolutePath string, wslDollarSign bool, serviceNode *ast.MappingValueNode) *protocol.DocumentLink { |
| 172 | if resolveAnchor(serviceNode.Key).GetToken().Value == "file" { |
| 173 | return createFileLink(folderAbsolutePath, wslDollarSign, serviceNode) |
| 174 | } |
| 175 | return nil |
| 176 | } |
| 177 | |
| 178 | func createModelLink(serviceNode *ast.MappingValueNode) *protocol.DocumentLink { |
| 179 | if resolveAnchor(serviceNode.Key).GetToken().Value == "model" { |
no test coverage detected