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 9534aa5 commit 3185213Copy full SHA for 3185213
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