Skip to content

Commit

Permalink
Make reference attrs public
Browse files Browse the repository at this point in the history
  • Loading branch information
noanflaherty committed Nov 22, 2024
1 parent 3ad9fbe commit afe4ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/python-v2/ast/src/Reference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export declare namespace Reference {
export class Reference extends AstNode {
public readonly name: string;
public readonly modulePath: ModulePath;
private readonly genericTypes: AstNode[];
public readonly genericTypes: AstNode[];
public readonly alias: string | undefined;
private readonly attribute: AttrPath;
public readonly attribute: AttrPath;

constructor({ name, modulePath, genericTypes, alias, attribute }: Reference.Args) {
super();
Expand Down

0 comments on commit afe4ef1

Please sign in to comment.