web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
416 B

  1. "use strict";
  2. module.exports = function (t, a) {
  3. var T = t, err = new T("My Error", "MY_ERROR", { errno: 123 });
  4. a(err instanceof Error, true, "Instance of error");
  5. a(err.constructor, Error, "Constructor");
  6. a(err.name, "Error", "Name");
  7. a(String(err), "Error: My Error", "String representation");
  8. a(err.code, "MY_ERROR", "Code");
  9. a(err.errno, 123, "Errno");
  10. a(typeof err.stack, "string", "Stack trace");
  11. };