We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36515f commit c017c08Copy full SHA for c017c08
packages/transform/src/transformers/v13-to-v14.ts
@@ -107,7 +107,7 @@ export class V13ToV14Transformer {
107
}
108
109
FuncCall(node: PG13.FuncCall, context: TransformerContext): any {
110
- const result: any = { ...node };
+ const result: any = {};
111
112
if (node.funcname !== undefined) {
113
result.funcname = Array.isArray(node.funcname)
@@ -155,10 +155,6 @@ export class V13ToV14Transformer {
155
result.location = node.location;
156
157
158
- if (result.funcformat !== undefined) {
159
- delete result.funcformat;
160
- }
161
-
162
return { FuncCall: result };
163
164
0 commit comments