From afe4ef157aec0ec1f3ce4cb1eb4eade53d0e4e2f Mon Sep 17 00:00:00 2001 From: Noa Flaherty Date: Fri, 22 Nov 2024 16:52:58 -0500 Subject: [PATCH] Make reference attrs public --- generators/python-v2/ast/src/Reference.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generators/python-v2/ast/src/Reference.ts b/generators/python-v2/ast/src/Reference.ts index 85b923b1e8d..c3fed7fd680 100644 --- a/generators/python-v2/ast/src/Reference.ts +++ b/generators/python-v2/ast/src/Reference.ts @@ -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();