util.js (343B)
1 /** 2 * AUTO-GENERATED - DO NOT EDIT. Source: https://github.com/gpuweb/cts 3 **/ /** 4 * Error without a stack, which can be used to fatally exit from `tool/` scripts with a 5 * user-friendly message (and no confusing stack). 6 */export class StacklessError extends Error {constructor(message) { 7 super(message); 8 this.stack = undefined; 9 } 10 }