elearning/Frontend-Learner/node_modules/oxc-parser/src-js/raw-transfer/lazy-common.js
2026-01-13 10:48:02 +07:00

11 lines
323 B
JavaScript

// Unique token which is not exposed publicly.
// Used to prevent user calling class constructors.
export const TOKEN = {};
/**
* Throw error when restricted class constructor is called by user code.
* @throws {Error}
*/
export function constructorError() {
throw new Error("Constructor is for internal use only");
}