reflect.DiagnosticHighlight

A UTF-8 byte range inside a diagnostic headline or annotation label.

Reference version

Signature

class reflect.DiagnosticHighlight

A UTF-8 byte range inside a diagnostic headline or annotation label.

Source:<builtin>/reflect/reflect.bamlbytes 13081603

Fields

start

int

end

int

kind

"identifier.type" | "identifier.function" | "identifier.field" | "identifier.variable" | "identifier.enum_variant" | "identifier.attribute" | "type_expression" | "code"

Implementations

reflect.AnyClass for T

Instance methods

function

attributes

(self) -> reflect.Meta throws never

The class declaration's schema metadata, or empty metadata when the runtime type is not a class.

function

get

<T>(self, name: string) -> T | null throws reflect.errors.TypeMismatch

Read a field as T. A missing field returns null; use has_field to distinguish that case from a present field whose value is null.

function

get_field

(self, name: string) -> reflect.class.Field | null throws never

Return a value-bound field handle, or null when no such field exists.

function

has_field

(self, name: string) -> bool throws never

Whether this value's runtime class declares a field called name. false when the runtime type is not a class.

function

list_fields

(self) -> reflect.class.Field[] throws never

Reflected fields bound to this value for Field.value<T>().

function

name

(self) -> string throws never

The rendered name of this value's concrete runtime type.

function

type

(self) -> reflect.Type throws never

This value's concrete runtime type.

Source:<builtin>/reflect/reflect.bamlbytes 76097639