File tree 3 files changed +18
-1
lines changed
3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 3
3
"engines" : {
4
4
"node" : " >=16"
5
5
},
6
- "version" : " 5.4.0 " ,
6
+ "version" : " 5.4.1 " ,
7
7
"type" : " module" ,
8
8
"description" : " A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments" ,
9
9
"scripts" : {
Original file line number Diff line number Diff line change @@ -572,3 +572,18 @@ void main() {
572
572
const a = Object . values ( ast . scopes [ 0 ] . functions . a ) [ 0 ] ;
573
573
expect ( a . references ) . toHaveLength ( 3 ) ;
574
574
} ) ;
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
+ } ) ;
Original file line number Diff line number Diff line change @@ -100,6 +100,8 @@ export const renameFunction = (
100
100
node . identifier . type === 'identifier'
101
101
) {
102
102
node . identifier . identifier = newName ;
103
+ } else if ( node . type === 'function_prototype' ) {
104
+ node . header . name . identifier = newName ;
103
105
} else {
104
106
console . warn ( 'Unknown function node to rename' , node ) ;
105
107
throw new Error ( `Function for type ${ node . type } not recognized` ) ;
You can’t perform that action at this time.
0 commit comments