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 f895b27 commit 1893294Copy full SHA for 1893294
package.json
@@ -3,7 +3,7 @@
3
"engines": {
4
"node": ">=16"
5
},
6
- "version": "1.4.0",
+ "version": "1.4.1",
7
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
8
"scripts": {
9
"prepare": "npm run build && ./prepublish.sh",
src/ast/node.ts
@@ -12,7 +12,7 @@ export type LocationObject = {
12
};
13
14
export interface BaseNode {
15
- location: LocationObject;
+ location?: LocationObject;
16
}
17
18
export interface LiteralNode extends BaseNode {
0 commit comments