Skip to content

Commit

Permalink
fix test reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ShuiRuTian committed Oct 20, 2021
1 parent 8be3a1d commit 0392be2
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions tests/baselines/reference/findAllRefsReExports.baseline.jsonc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// === /b.ts ===
// export { [|foo|] as [|bar|] } from "./a";

// === /c.ts ===
// export { [|foo|] as [|default|] } from "./a";

Expand All @@ -8,9 +11,6 @@
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /b.ts ===
// export { [|foo|] as [|bar|] } from "./a";

// === /d.ts ===
// export { [|default|] } from "./c";

Expand Down Expand Up @@ -847,6 +847,9 @@
}
]

// === /b.ts ===
// export { /*FIND ALL REFS*/[|foo|] as [|bar|] } from "./a";

// === /c.ts ===
// export { [|foo|] as [|default|] } from "./a";

Expand All @@ -857,9 +860,6 @@
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /b.ts ===
// export { /*FIND ALL REFS*/[|foo|] as [|bar|] } from "./a";

// === /d.ts ===
// export { [|default|] } from "./c";

Expand Down Expand Up @@ -1696,6 +1696,9 @@
}
]

// === /b.ts ===
// export { [|foo|] as [|bar|] } from "./a";

// === /c.ts ===
// export { /*FIND ALL REFS*/[|foo|] as [|default|] } from "./a";

Expand All @@ -1706,9 +1709,6 @@
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /b.ts ===
// export { [|foo|] as [|bar|] } from "./a";

// === /d.ts ===
// export { [|default|] } from "./c";

Expand Down Expand Up @@ -4291,21 +4291,21 @@
}
]

// === /e.ts ===
// import { [|bar|] } from "./b";
// import [|baz|] from "./c";
// import { [|default|] as [|bang|] } from "./c";
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /d.ts ===
// export { /*FIND ALL REFS*/[|default|] } from "./c";

// === /b.ts ===
// export { [|foo|] as [|bar|] } from "./a";

// === /c.ts ===
// export { [|foo|] as [|default|] } from "./a";

// === /b.ts ===
// export { [|foo|] as [|bar|] } from "./a";
// === /e.ts ===
// import { [|bar|] } from "./b";
// import [|baz|] from "./c";
// import { [|default|] as [|bang|] } from "./c";
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /a.ts ===
// export function [|foo|](): void {}
Expand Down Expand Up @@ -6466,13 +6466,6 @@
}
]

// === /e.ts ===
// import { [|bar|] } from "./b";
// import [|baz|] from "./c";
// import { [|default|] as [|bang|] } from "./c";
// import /*FIND ALL REFS*/[|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /d.ts ===
// export { [|default|] } from "./c";

Expand All @@ -6482,6 +6475,13 @@
// === /c.ts ===
// export { [|foo|] as [|default|] } from "./a";

// === /e.ts ===
// import { [|bar|] } from "./b";
// import [|baz|] from "./c";
// import { [|default|] as [|bang|] } from "./c";
// import /*FIND ALL REFS*/[|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); [|boom|]();

// === /a.ts ===
// export function [|foo|](): void {}

Expand Down Expand Up @@ -7315,13 +7315,6 @@
}
]

// === /e.ts ===
// import { [|bar|] } from "./b";
// import [|baz|] from "./c";
// import { [|default|] as [|bang|] } from "./c";
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); /*FIND ALL REFS*/[|boom|]();

// === /d.ts ===
// export { [|default|] } from "./c";

Expand All @@ -7331,6 +7324,13 @@
// === /c.ts ===
// export { [|foo|] as [|default|] } from "./a";

// === /e.ts ===
// import { [|bar|] } from "./b";
// import [|baz|] from "./c";
// import { [|default|] as [|bang|] } from "./c";
// import [|boom|] from "./d";
// [|bar|](); [|baz|](); [|bang|](); /*FIND ALL REFS*/[|boom|]();

// === /a.ts ===
// export function [|foo|](): void {}

Expand Down

0 comments on commit 0392be2

Please sign in to comment.