1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
///<reference path="fourslash.ts"/>
/////*1*/ var x: () => void ;
/////*2*/ var y: void ;
/////*3*/ function test(a:void,b:string){}
/////*4*/ var a, b, c, d;
/////*5*/ void a ;
/////*6*/ void (0);
/////*7*/ b=void(c=1,d=2);
format.document();
// formatting on function return type => void
goTo.marker("1");
verify.currentLineContentIs('var x: () => void;');
// formatting on variable type
goTo.marker("2");
verify.currentLineContentIs('var y: void;');
// formatting on function with void argument type
goTo.marker("3");
verify.currentLineContentIs('function test(a: void, b: string) { }');
// formatting on void operator
goTo.marker("5");
verify.currentLineContentIs('void a;');
goTo.marker("6");
verify.currentLineContentIs('void (0);');
goTo.marker("7");
verify.currentLineContentIs('b = void (c = 1, d = 2);');
|