Fix fourslash test

This commit is contained in:
Anders Hejlsberg
2018-11-08 18:02:04 +01:00
parent a8c4e6f83c
commit e95ed29ca9

View File

@@ -9,7 +9,7 @@ const [r0, r1, r2, r3] = test.ranges();
const i = { definition: "(property) I.x: {}", ranges: [r0] };
const j = { definition: "(property) J.x: {}", ranges: [r1] };
const anon = { definition: "(property) x: string", ranges: [r2] };
const intersect = { definition: "(property) x: string & {}", ranges: [r3] };
const intersect = { definition: "(property) x: {} & string", ranges: [r3] };
verify.referenceGroups(r0, [i, intersect]);
verify.referenceGroups(r1, [j, intersect]);
verify.referenceGroups(r2, [anon, intersect]);