Skip to content

Commit 662d870

Browse files
committed
priv_name => upper
1 parent bf2e281 commit 662d870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/deparser/src/deparser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9248,7 +9248,7 @@ export class Deparser implements DeparserVisitor {
92489248
const output: string[] = [];
92499249

92509250
if (node.priv_name) {
9251-
output.push(node.priv_name);
9251+
output.push(node.priv_name.toUpperCase());
92529252
} else {
92539253
output.push('ALL');
92549254
}

0 commit comments

Comments
 (0)