Use consistent quotes

This commit is contained in:
Arthur Ozga 2017-03-12 18:52:38 -07:00
parent 060317759e
commit 6c72283378
20 changed files with 29 additions and 29 deletions

View file

@ -8,6 +8,6 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
f(): void{ f(): void{
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -15,6 +15,6 @@ verify.rangeAfterCodeFix(`
f(a: string, b: number): Function; f(a: string, b: number): Function;
f(a: string): Function; f(a: string): Function;
f(a: any, b?: any) { f(a: any, b?: any) {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -8,6 +8,6 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
f(): this { f(): this {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -7,6 +7,6 @@
//// class C extends A<number> {[| |]} //// class C extends A<number> {[| |]}
verify.rangeAfterCodeFix(`f(x: number): number{ verify.rangeAfterCodeFix(`f(x: number): number{
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -7,6 +7,6 @@
//// class C<U> extends A<U> {[| |]} //// class C<U> extends A<U> {[| |]}
verify.rangeAfterCodeFix(`f(x: U): U{ verify.rangeAfterCodeFix(`f(x: U): U{
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -14,6 +14,6 @@ verify.rangeAfterCodeFix(`
y: this; y: this;
z: A; z: A;
foo(): number { foo(): number {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -8,6 +8,6 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
f(): void{ f(): void{
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -13,6 +13,6 @@
//// } //// }
verify.rangeAfterCodeFix(`f1(): void{ verify.rangeAfterCodeFix(`f1(): void{
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -9,6 +9,6 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
method(a: number, b: string): boolean; method(a: number, b: string): boolean;
method(a: string | number, b?: string | number): boolean | Function { method(a: string | number, b?: string | number): boolean | Function {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -13,6 +13,6 @@ verify.rangeAfterCodeFix(`
method(a: string, b: number): Function; method(a: string, b: number): Function;
method(a: string): Function; method(a: string): Function;
method(a: string | number, b?: string | number): boolean | Function { method(a: string | number, b?: string | number): boolean | Function {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -13,6 +13,6 @@
//// class C3 implements I1 {[| |]} //// class C3 implements I1 {[| |]}
verify.rangeAfterCodeFix(`f1<T extends number>(){ verify.rangeAfterCodeFix(`f1<T extends number>(){
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -12,6 +12,6 @@
//// class C1 implements N1.I1 {[| |]} //// class C1 implements N1.I1 {[| |]}
verify.rangeAfterCodeFix(`f1(): string{ verify.rangeAfterCodeFix(`f1(): string{
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -11,11 +11,11 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
["foo"](o: any): boolean { ["foo"](o: any): boolean {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
["x"]: boolean; ["x"]: boolean;
[1](): string { [1](): string {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[2]: boolean; [2]: boolean;
`); `);

View file

@ -22,30 +22,30 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
[Symbol.hasInstance](o: any): boolean { [Symbol.hasInstance](o: any): boolean {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.isConcatSpreadable]: boolean; [Symbol.isConcatSpreadable]: boolean;
[Symbol.iterator]() { [Symbol.iterator]() {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.match]: boolean; [Symbol.match]: boolean;
[Symbol.replace](...args: {}) { [Symbol.replace](...args: {}) {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.search](str: string): number { [Symbol.search](str: string): number {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.species](): number { [Symbol.species](): number {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.split](str: string, limit?: number): {} { [Symbol.split](str: string, limit?: number): {} {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.toPrimitive](hint: "number"): number; [Symbol.toPrimitive](hint: "number"): number;
[Symbol.toPrimitive](hint: "default"): number; [Symbol.toPrimitive](hint: "default"): number;
[Symbol.toPrimitive](hint: "string"): string; [Symbol.toPrimitive](hint: "string"): string;
[Symbol.toPrimitive](hint: any) { [Symbol.toPrimitive](hint: any) {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
[Symbol.toStringTag]: string; [Symbol.toStringTag]: string;
[Symbol.unscopables]: any; [Symbol.unscopables]: any;

View file

@ -8,6 +8,6 @@
verify.rangeAfterCodeFix(` verify.rangeAfterCodeFix(`
f(x: number,y: this): I { f(x: number,y: this): I {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -16,12 +16,12 @@ x: number;
y: number; y: number;
z: number; z: number;
f() { f() {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
g() { g() {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
h() { h() {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -13,6 +13,6 @@ verify.rangeAfterCodeFix(`
method(a: string, b: number): Function; method(a: string, b: number): Function;
method(a: string): Function; method(a: string): Function;
method(a: any, b?: any) { method(a: any, b?: any) {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -13,6 +13,6 @@ verify.rangeAfterCodeFix(`
method(a: string, ...b: number[]): Function; method(a: string, ...b: number[]): Function;
method(a: string): Function; method(a: string): Function;
method(a: any, ...b?: any[]) { method(a: any, ...b?: any[]) {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -13,6 +13,6 @@ verify.rangeAfterCodeFix(`
method(a: string, b: number): Function; method(a: string, b: number): Function;
method(a: string): Function; method(a: string): Function;
method(a: any, b?: any, ...rest?: any[]) { method(a: any, b?: any, ...rest?: any[]) {
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);

View file

@ -7,6 +7,6 @@
//// class C implements I {[| |]} //// class C implements I {[| |]}
verify.rangeAfterCodeFix(`f<T extends number>(x: T){ verify.rangeAfterCodeFix(`f<T extends number>(x: T){
throw new Error('Method not implemented.'); throw new Error("Method not implemented.");
} }
`); `);