Foundry.OnTypeDiagnostics¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
class |
|
|
|
|
Virtual Methods¶
- Inherited:
Properties¶
None
Signals¶
- Inherited:
Fields¶
- Inherited:
Class Details¶
- class Foundry.OnTypeDiagnostics(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
Represents diagnostics that are continually updated as the contents of a document are changed.
- classmethod new(document)¶
- Parameters:
document (
Foundry.TextDocument) –- Return type:
- foreach_in_range(first_line, last_line, callback, *callback_data)¶
- Parameters:
first_line (
int) – limit diagnostics to this line or afterlast_line (
int) – limit diagnostics to this line or beforecallback (
Foundry.OnTypeDiagnosticsForeachFunc) –
Calls callback for each diagnostic found between the two lines.