ballerina-lang icon indicating copy to clipboard operation
ballerina-lang copied to clipboard

Missing change variable type code action in wait future expression

Open gayalkuruppu opened this issue 2 years ago • 0 comments

Description: Add change variable type code action does not work for BCE2652. Check for other missing cases as well(if available).

Describe your problem(s)

https://user-images.githubusercontent.com/46120162/182302591-d14d65e3-a15b-40bf-a9a5-4f3050397cd5.mov

code

function test() {
    future<int> fut = start foo(); 
    int fVal = wait fut;
}

function foo() returns int {
    return 0;
}

Describe your solution(s) Support change variable type for BCE2652. Check for other missing cases as well.

gayalkuruppu avatar Aug 02 '22 06:08 gayalkuruppu