add rule to insert space between async keyword and open paren

This commit is contained in:
Vladimir Matveev
2015-10-11 22:19:51 -07:00
parent 1b5dc0d7d1
commit c35419e12e
2 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
/// <reference path="fourslash.ts" />
/////*1*/let x = async () => 1;
/////*2*/let y = async() => 1;
/////*3*/let z = async function () { return 1; };
format.document();
goTo.marker("1");
verify.currentLineContentIs("let x = async () => 1;");
goTo.marker("2");
verify.currentLineContentIs("let y = async () => 1;");
goTo.marker("3");
verify.currentLineContentIs("let z = async function() { return 1; };")