Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hovering over types does not show anything #29450

Closed
pcnfernando opened this issue Mar 23, 2021 · 2 comments · Fixed by #29701
Closed

Hovering over types does not show anything #29450

pcnfernando opened this issue Mar 23, 2021 · 2 comments · Fixed by #29701
Assignees
Labels
Area/Hover Language Server Hover related issues Planning/SwanLakeDump All issues planned for Swan Lake GA release Priority/Blocker Team/LanguageServer Language Server Implementation related issues. #Compiler Type/Bug Version/SLAlpha3 Issues reported on SwanLake Alpha3 release, mostly reported from the usability hackathon

Comments

@pcnfernando
Copy link
Member

Description:

eg: hovering over http:Response

import ballerina/io;
import ballerina/http;

public string API_KEY = "";
http:Client endpoint = check new("https://free.currconv.com/api/v7/convert");

function rate(Currency 'from, Currency to) {
    io:println("Requesting rates from "+ <string>'from + " to " + <string>to);

    http:Response|http:ClientError response = endpoint->get(getParamUrlString('from, to));

    if response is http:Response {
        io:println(response.toString());
    }
    
}

Suggested Labels:

Suggested Assignees:

Affected Product Version:
SL Alpha 3

OS, DB, other environment details and versions:

Steps to reproduce:

Related Issues:

@prabushi prabushi transferred this issue from ballerina-attic/plugin-vscode Mar 23, 2021
@prabushi prabushi added Team/LanguageServer Language Server Implementation related issues. #Compiler Type/Bug Version/SLAlpha3 Issues reported on SwanLake Alpha3 release, mostly reported from the usability hackathon labels Mar 23, 2021
@nadeeshaan nadeeshaan added Area/SemanticAPI Semantic API Related Issues #Compiler Area/Hover Language Server Hover related issues Planning/SwanLakeDump All issues planned for Swan Lake GA release labels Mar 24, 2021
@nadeeshaan nadeeshaan added this to the Ballerina Swan Lake - Beta milestone Mar 24, 2021
@nadeeshaan
Copy link
Contributor

Blocked by #29287

@pubudu91
Copy link
Contributor

Removing the semantic API label since #29287 was fixed.

@pubudu91 pubudu91 removed the Area/SemanticAPI Semantic API Related Issues #Compiler label Mar 29, 2021
@nadeeshaan nadeeshaan modified the milestones: Ballerina Swan Lake - Beta, Ballerina Swan Lake - Beta RC1 Mar 30, 2021
@Kishanthan Kishanthan modified the milestones: Ballerina Swan Lake - Alpha5, Ballerina Swan Lake - Alpha6 Apr 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area/Hover Language Server Hover related issues Planning/SwanLakeDump All issues planned for Swan Lake GA release Priority/Blocker Team/LanguageServer Language Server Implementation related issues. #Compiler Type/Bug Version/SLAlpha3 Issues reported on SwanLake Alpha3 release, mostly reported from the usability hackathon
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants