| 12345678910111213141516171819202122 | class WebGPUBinding {	constructor( name = '' ) {		this.name = name;		this.visibility = null;		this.type = null; // read-only		this.isShared = false;	}	setVisibility( visibility ) {		this.visibility = visibility;	}}export default WebGPUBinding;
 |