We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
e.g. for C#: \s+async\s+void\s+ -> replace with async Task
\s+async\s+void\s+
async Task
e.g. for TypeScript: undefined -> replace with ? or null
undefined
?
null
e.g. for F#: * \s+task\s*{ -> replace with async (and Async.StartAsTask if needed) * let! _ = -> replace with do!
\s+task\s*{
async
let! _ =
do!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
e.g. for C#:
\s+async\s+void\s+
-> replace withasync Task
e.g. for TypeScript:
undefined
-> replace with?
ornull
e.g. for F#:
*
\s+task\s*{
-> replace withasync
(and Async.StartAsTask if needed)*
let! _ =
-> replace withdo!
The text was updated successfully, but these errors were encountered: