diff options
Diffstat (limited to 'debuginfo-tests/dexter/dex/dextIR/DebuggerIR.py')
-rw-r--r-- | debuginfo-tests/dexter/dex/dextIR/DebuggerIR.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/debuginfo-tests/dexter/dex/dextIR/DebuggerIR.py b/debuginfo-tests/dexter/dex/dextIR/DebuggerIR.py new file mode 100644 index 00000000000..5956db602b4 --- /dev/null +++ b/debuginfo-tests/dexter/dex/dextIR/DebuggerIR.py @@ -0,0 +1,14 @@ +# DExTer : Debugging Experience Tester +# ~~~~~~ ~ ~~ ~ ~~ +# +# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +# See https://llvm.org/LICENSE.txt for license information. +# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception + + +class DebuggerIR: + """Data class which represents a debugger.""" + + def __init__(self, name: str, version: str): + self.name = name + self.version = version |