1# DExTer : Debugging Experience Tester 2# ~~~~~~ ~ ~~ ~ ~~ 3# 4# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 5# See https://llvm.org/LICENSE.txt for license information. 6# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7"""Specializations for the Visual Studio 2019 interface.""" 8 9from dex.debugger.visualstudio.VisualStudio import VisualStudio 10 11 12class VisualStudio2019(VisualStudio): 13 @classmethod 14 def get_name(cls): 15 return "Visual Studio 2019" 16 17 @classmethod 18 def get_option_name(cls): 19 return "vs2019" 20 21 @property 22 def _dte_version(self): 23 return "VisualStudio.DTE.16.0" 24