Skip to content

Commit

Permalink
fix(core): add intoSecret field also to the ast
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-cristino committed Jul 3, 2024
1 parent d259c7c commit 9f23b47
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/core/src/visitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export const visit = (cst: Cst, params: ZenParams): { ast: Ast; lineNo: number }
};

if (m.into) ast.into = m.into;
if (m.intoSecret) ast.intoSecret = m.intoSecret;
if (m.open) ast.open = fetchOpenconnect(params, m.open);
if (m.connect) ast.connect = fetchOpenconnect(params, m.connect);

Expand Down

0 comments on commit 9f23b47

Please sign in to comment.