Inmanta Compile Data Reference¶
This page documents the compile data output when compiling with the --export-compile-data flag. The structure
of this JSON is defined by inmanta.data.model.CompileData which inherits
from pydantic.BaseModel. To produce the JSON representation of the object, model.json() is called. See the
pydantic documentation
for more information on how exactly a JSON is generated from a model.
- class inmanta.data.model.CompileData(*, errors: list[Error])[source]¶
Bases:
BaseModelTop level structure of compiler data to be exported.
- model_config: ClassVar[ConfigDict] = {'use_enum_values': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class inmanta.ast.export.Error(*, category: ErrorCategory = ErrorCategory.runtime, type: str, message: str, location: Location | None = None, **extra_data: Any)[source]¶
Bases:
BaseModelError occurred while trying to compile.
- category: ErrorCategory¶
Category of this error.
- message: str¶
Error message.
- model_config: ClassVar[ConfigDict] = {'extra': 'allow', 'validate_assignment': True}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- type: str¶
Fully qualified name of the actual exception.
- class inmanta.ast.export.ErrorCategory(*values)[source]¶
Bases:
str,EnumCategory of an error.
- parser = 'parse_error'¶
Error occurred while parsing.
- plugin = 'plugin_exception'¶
A plugin explicitly raised an
inmanta.plugins.PluginException.
- runtime = 'runtime_error'¶
Error occurred after parsing.
- class inmanta.ast.export.Location(*, uri: str, range: Range)[source]¶
Bases:
BaseModelLocation in a file. Based on the LSP spec 3.15
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- uri: str¶
- class inmanta.ast.export.Range(*, start: Position, end: Position)[source]¶
Bases:
BaseModelRange in a file. Based on the LSP spec 3.15
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class inmanta.ast.export.Position(*, line: int, character: int)[source]¶
Bases:
BaseModelPosition in a file. Based on the LSP spec 3.15
- character: int¶
- line: int¶
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].