chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.css / SourceRange

SourceRange

data class SourceRange

Text range within a resource. All numbers are zero-based.

Constructors

<init>

Text range within a resource. All numbers are zero-based.

SourceRange(startLine: Int, startColumn: Int, endLine: Int, endColumn: Int)

Properties

endColumn

End column of range (exclusive).

val endColumn: Int

endLine

End line of range

val endLine: Int

startColumn

Start column of range (inclusive).

val startColumn: Int

startLine

Start line of range.

val startLine: Int