Go to the source code of this file.
◆ CONSOLE_BUILTIN_IMPLEMENTATION [1/2]
      
        
          | #define CONSOLE_BUILTIN_IMPLEMENTATION | ( |  | call, | 
        
          |  |  |  | name ) | 
      
 
Value:
    ConsoleCall(isolate, 
args, &debug::ConsoleDelegate::call); \
    RETURN_FAILURE_IF_EXCEPTION(isolate);                      \
    return ReadOnlyRoots(isolate).undefined_value();           \
  }
base::Vector< const DirectHandle< Object > > args
 
Definition at line 190 of file builtins-console.cc.
 
 
◆ CONSOLE_BUILTIN_IMPLEMENTATION [2/2]
      
        
          | #define CONSOLE_BUILTIN_IMPLEMENTATION | ( |  | call, | 
        
          |  |  |  | name, | 
        
          |  |  |  | index ) | 
      
 
Value:
    if (!Formatter(isolate, 
args, index)) {                    \
      return ReadOnlyRoots(isolate).exception();               \
    }                                                          \
    ConsoleCall(isolate, 
args, &debug::ConsoleDelegate::call); \
    RETURN_FAILURE_IF_EXCEPTION(isolate);                      \
    return ReadOnlyRoots(isolate).undefined_value();           \
  }
 
Definition at line 190 of file builtins-console.cc.
 
 
◆ CONSOLE_BUILTIN_SETUP
      
        
          | #define CONSOLE_BUILTIN_SETUP | ( |  | call, | 
        
          |  |  |  | name, | 
        
          |  |  |  | ... ) | 
      
 
Value:  InstallContextFunction(isolate, console_context, #name, \
                         Builtin::kConsole##call, context);
 
 
◆ CONSOLE_METHOD_LIST
      
        
          | #define CONSOLE_METHOD_LIST | ( |  | V | ) |  | 
      
 
Value:
  V(DirXml, dirXml)            \
  V(Table, table)              \
  V(GroupEnd, groupEnd)        \
  V(Clear, clear)              \
  V(Count, count)              \
  V(CountReset, countReset)    \
  V(Profile, profile)          \
  V(ProfileEnd, profileEnd)
 
Definition at line 21 of file builtins-console.cc.
 
 
◆ CONSOLE_METHOD_WITH_FORMATTER_LIST
      
        
          | #define CONSOLE_METHOD_WITH_FORMATTER_LIST | ( |  | V | ) |  | 
      
 
Value:
  V(Error, error, 1)                          \
  V(Info, info, 1)                            \
  V(Log, log, 1)                              \
  V(Warn, warn, 1)                            \
  V(Trace, trace, 1)                          \
  V(Group, group, 1)                          \
  V(GroupCollapsed, groupCollapsed, 1)        \
#define Assert(condition)
 
Definition at line 32 of file builtins-console.cc.