BackForwardCacheBlockingDetails

@Serializable
data class BackForwardCacheBlockingDetails(val url: String? = null, val function: String? = null, val lineNumber: Int, val columnNumber: Int)

Constructors

Link copied to clipboard
constructor(url: String? = null, function: String? = null, lineNumber: Int, columnNumber: Int)

Properties

Link copied to clipboard

Column number in the script (0-based).

Link copied to clipboard
val function: String? = null

Function name where blockage happened. Optional because of anonymous functions and tests.

Link copied to clipboard

Line number in the script (0-based).

Link copied to clipboard
val url: String? = null

Url of the file where blockage happened. Optional because of tests.