Source class

A Source is a descriptor for source code. It is returned from the debug adapter as part of a StackFrame and it is used by clients when specifying breakpoints.

Constructors

Source({Object? adapterData, List<Checksum>? checksums, String? name, String? origin, String? path, String? presentationHint, int? sourceReference, List<Source>? sources})
Source.fromMap(Map<String, Object?> obj)

Properties

adapterData Object?
Additional data that a debug adapter might want to loop through the client. The client should leave the data intact and persist it across sessions. The client should not interpret the data.
final
checksums List<Checksum>?
The checksums associated with this file.
final
hashCode int
The hash code for this object.
no setterinherited
name String?
The short name of the source. Every source returned from the debug adapter has a name. When sending a source to the debug adapter this name is optional.
final
origin String?
The origin of this source. For example, 'internal module', 'inlined content from source map', etc.
final
path String?
The path of the source to be shown in the UI. It is only used to locate and load the content of the source if no sourceReference is specified (or its value is 0).
final
presentationHint String?
A hint for how to present the source in the UI. A value of deemphasize can be used to indicate that the source is not available or that it is skipped on stepping.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sourceReference int?
If the value > 0 the contents of the source must be retrieved through the source request (even if a path is specified). Since a sourceReference is only valid for a session, it can not be used to persist a source. The value should be less than or equal to 2147483647 (2^31-1).
final
sources List<Source>?
A list of sources that are related to this source. These may be the source that generated this source.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

canParse(Object? obj) bool
fromJson(Map<String, Object?> obj) Source