Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 667 Bytes

File metadata and controls

31 lines (23 loc) · 667 Bytes

Message

A structure representing the messages created by the language server when evaluating the steps within a proof.

Attributes

level : int

The level of severity of this message.

text : str

The text content of the message.

range : Range Range

The range in the file for which this message applies.

Operations

__init__(self, level: int, text: str, range = None)

Creates a new Message object.

level

The level of severity of this message.

text : str

The text content of the message.

range : Range = None

The range in the file for which this message applies.