Files
revng-revng/scripts/tuple_tree_generator/schema/reference.py
Giacomo Vercesi d404fee38f Unify TTG CLI tool for generation
Merge all the command-line scripts for generating tuple-tree
implementations into a single `tuple-tree-generate.py` script. Move all
the other files a directory down.
2025-06-25 15:40:13 +02:00

13 lines
309 B
Python

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
from .definition import Definition
class ReferenceDefinition(Definition):
def __init__(self, pointee: Definition, root: Definition):
super().__init__(True)
self.pointee = pointee
self.root = root