We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9534aa5 + 3185213 commit 9b054f5Copy full SHA for 9b054f5
package.json
@@ -3,7 +3,7 @@
3
"engines": {
4
"node": ">=16"
5
},
6
- "version": "5.3.1",
+ "version": "5.3.2",
7
"type": "module",
8
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
9
"scripts": {
src/ast/ast-types.ts
@@ -323,7 +323,7 @@ export interface InterfaceDeclaratorNode extends BaseNode {
323
qualifiers: TypeQualifiers;
324
interface_type: IdentifierNode;
325
lp: LiteralNode<'('>;
326
- declarations: StructDeclarationNode;
+ declarations: StructDeclarationNode[];
327
rp: LiteralNode<')'>;
328
identifier?: QuantifiedIdentifierNode;
329
}
0 commit comments