v8  8.6.395 (node 15.0.1)
V8 is Google's open source JavaScript engine
SourceLocation Class Referencefinal

#include <source-location.h>

Public Member Functions

constexpr SourceLocation ()=default
 
constexpr const char * Function () const
 
constexpr const char * FileName () const
 
constexpr size_t Line () const
 
std::string ToString () const
 

Static Public Member Functions

static constexpr SourceLocation Current ()
 

Detailed Description

Encapsulates source location information. Mimics C++20's std::source_location.

Definition at line 30 of file source-location.h.

Constructor & Destructor Documentation

◆ SourceLocation()

constexpr SourceLocation ( )
constexprdefault

Constructs unspecified source location information.

Referenced by IgnoreLocationPolicy::Location().

Member Function Documentation

◆ Current()

static constexpr SourceLocation Current ( )
inlinestaticconstexpr

Construct source location information corresponding to the location of the call site.

Definition at line 43 of file source-location.h.

◆ FileName()

constexpr const char* FileName ( ) const
inlineconstexpr

Returns the name of the current source file represented by this object.

Returns
the file name as cstring.

Definition at line 64 of file source-location.h.

◆ Function()

constexpr const char* Function ( ) const
inlineconstexpr

Returns the name of the function associated with the position represented by this object, if any.

Returns
the function name as cstring.

Definition at line 57 of file source-location.h.

◆ Line()

constexpr size_t Line ( ) const
inlineconstexpr

Returns the line number represented by this object.

Returns
the line number.

Definition at line 71 of file source-location.h.

◆ ToString()

std::string ToString ( ) const

Returns a human-readable string representing this object.

Returns
a human-readable string representing source location information.

The documentation for this class was generated from the following file: