Lines Matching refs:Console
3 // The Console constructor is not actually used to construct the global
105 function Console(options /* or: stdout, stderr, ignoreErrors = true */) {
110 return ReflectConstruct(Console, arguments);
156 // Bind the prototype functions to this Console instance
157 ArrayPrototypeForEach(ObjectKeys(Console.prototype), (key) => {
159 // the prototype so that users extending the Console can override them
178 // Fixup global.console instanceof global.console.Console
179 ObjectDefineProperty(Console, SymbolHasInstance, {
189 ObjectDefineProperties(Console.prototype, {
193 // Eager version for the Console constructor
307 // Console is a debugging utility, so it swallowing errors is not
683 Console.prototype[method] = consoleMethods[method];
685 Console.prototype.debug = Console.prototype.log;
686 Console.prototype.info = Console.prototype.log;
687 Console.prototype.dirxml = Console.prototype.log;
688 Console.prototype.error = Console.prototype.warn;
689 Console.prototype.groupCollapsed = Console.prototype.group;
706 const nodeConsoleKeys = ObjectKeys(Console.prototype);
725 Console,