Files
revng-revng/python/revng/model/mixins.py
Giacomo Vercesi 90e8cce41e model: rework python mixin infrastructure
Rework the python mixin infrastructure for the model. Mixins are now
specified explicitly instead of using the `ast` module. The mixins are
loaded relative to the generated python file, this allows to have two
models: `revng.model` and `revng.project.model`. The latter is augmented
via mixins to have project-specific facilities such as `get_artifact`
and artifact accessors.
2026-04-10 11:45:12 +02:00

9 lines
174 B
Python

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
AllMixin = object
BinaryMixin = object
FunctionMixin = object
TypeDefinitionMixin = object