Skip to content

Commit 7ff3a37

Browse files
committed
Fixing rename case for function prototypes
1 parent 85c4012 commit 7ff3a37

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"engines": {
44
"node": ">=16"
55
},
6-
"version": "5.4.0",
6+
"version": "5.4.1",
77
"type": "module",
88
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
99
"scripts": {

src/parser/scope.test.ts

+15
Original file line numberDiff line numberDiff line change
@@ -572,3 +572,18 @@ void main() {
572572
const a = Object.values(ast.scopes[0].functions.a)[0];
573573
expect(a.references).toHaveLength(3);
574574
});
575+
576+
test('rename function prototypes', () => {
577+
const ast = c.parseSrc(
578+
`vec3 hash3(vec3 p3);
579+
vec3 hash3(vec3 p3) {}`
580+
);
581+
582+
ast.scopes[0].functions = renameFunctions(
583+
ast.scopes[0].functions,
584+
(name) => `${name}_FUNCTION`
585+
);
586+
587+
expect(generate(ast)).toBe(`vec3 hash3_FUNCTION(vec3 p3);
588+
vec3 hash3_FUNCTION(vec3 p3) {}`);
589+
});

src/parser/utils.ts

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ export const renameFunction = (
100100
node.identifier.type === 'identifier'
101101
) {
102102
node.identifier.identifier = newName;
103+
} else if (node.type === 'function_prototype') {
104+
node.header.name.identifier = newName;
103105
} else {
104106
console.warn('Unknown function node to rename', node);
105107
throw new Error(`Function for type ${node.type} not recognized`);

0 commit comments

Comments
 (0)