mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
fix(isolated_declarations): try fix fixtures
This commit is contained in:
parent
9b3f763a49
commit
e148c80fcb
2 changed files with 12 additions and 36 deletions
|
|
@ -20,29 +20,17 @@ export abstract class Qux {
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Baz {
|
export class Baz {
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
readonly prop1 = "some string";
|
readonly prop1 = "some string";
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
prop2 = "another string";
|
prop2 = "another string";
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private prop3 = "yet another string";
|
private prop3 = "yet another string";
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private prop4(): void {}
|
private prop4(): void {}
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private static prop5 = "yet another string";
|
private static prop5 = "yet another string";
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private static prop6(): void {}
|
private static prop6(): void {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,29 +21,17 @@ export declare abstract class Qux {
|
||||||
baz(): void;
|
baz(): void;
|
||||||
}
|
}
|
||||||
export declare class Baz {
|
export declare class Baz {
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
readonly prop1 = "some string";
|
readonly prop1 = "some string";
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
prop2: string;
|
prop2: string;
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private prop3;
|
private prop3;
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private prop4;
|
private prop4;
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private static prop5;
|
private static prop5;
|
||||||
/**
|
/** Just a comment */
|
||||||
* Just a comment
|
|
||||||
*/
|
|
||||||
private static prop6;
|
private static prop6;
|
||||||
}
|
}
|
||||||
export declare class Boo {
|
export declare class Boo {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue