New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

wgsl_reflect

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wgsl_reflect - npm Package Compare versions

Comparing version 1.0.14 to 1.0.15

2

package.json
{
"name": "wgsl_reflect",
"version": "1.0.14",
"version": "1.0.15",
"description": "WGSL Parser and Reflection library",

@@ -5,0 +5,0 @@ "author": "Brendan Duncan",

@@ -142,2 +142,4 @@ # WebGPU Shading Language Reflection Library

outputs: Array<OutputInfo>;
arguments: Array<ArgumentInfo>; // only for non-entry functions
returnType: TypeInfo | null;
resources: Array<VariableInfo>;

@@ -170,2 +172,7 @@ startLine: number;

}
class ArgumentInfo {
name: string;
type: TypeInfo;
}
```

@@ -172,0 +179,0 @@

@@ -107,2 +107,7 @@ import * as AST from "./wgsl_ast.js";

}
export declare class ArgumentInfo {
name: string;
type: TypeInfo;
constructor(name: string, type: TypeInfo);
}
export declare class FunctionInfo {

@@ -113,2 +118,4 @@ name: string;

outputs: Array<OutputInfo>;
arguments: Array<ArgumentInfo>;
returnType: TypeInfo | null;
resources: Array<VariableInfo>;

@@ -115,0 +122,0 @@ overrides: Array<OverrideInfo>;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc