deno_doc icon indicating copy to clipboard operation
deno_doc copied to clipboard

Stack overflow with circular dependencies when private flag is enabled

Open janispritzkau opened this issue 1 year ago • 0 comments

Here is an example of how to reproduce this issue:

// a.ts
import { B } from "./b.ts";
export interface A {
  method(b: B): void
}

// b.ts
import { A } from "./a.ts";
export interface B {
  method(a: A): void
}

janispritzkau avatar Nov 02 '22 15:11 janispritzkau