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

mcover breaks null-safety #55

Open
byteit101 opened this issue Oct 20, 2021 · 0 comments
Open

mcover breaks null-safety #55

byteit101 opened this issue Oct 20, 2021 · 0 comments

Comments

@byteit101
Copy link

Compiling with the macro enabled, I get this error: Null safety: Cannot cast nullable value to not nullable type

from this expression:

function myfunc(key:String):String {
    var tmp = mydict[key];
    if (tmp != null)
       return (tmp:String); // here is the line it complains about
    //...
}

The only way I can find to solve this is to disable null safety for the offending class, run mcover, then re-enable null safety

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant