Bug Report
馃攷 Search Terms
- ts check
- quick fix
- code action
馃晽 Version & Regression Information
4.3.0-dev.20210228
馃捇 Code
For the javascript:
Use add missing function declaration on add
馃檨 Actual behavior
The ts check comment is duplicated
//@ts-check
add(1, 2);
function //@ts-check
add(arg0, arg1) {
throw new Error("Function not implemented.");
}
馃檪 Expected behavior
//@ts-check
add(1, 2);
function add(arg0, arg1) {
throw new Error("Function not implemented.");
}
Bug Report
馃攷 Search Terms
馃晽 Version & Regression Information
4.3.0-dev.20210228
馃捇 Code
For the javascript:
Use
add missing function declarationonadd馃檨 Actual behavior
The ts check comment is duplicated
馃檪 Expected behavior