Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jestedfa@microsoft.com>2019-07-26 20:06:54 +0300
committerJeffrey Stedfast <jestedfa@microsoft.com>2019-07-26 20:06:54 +0300
commit67f4c0243307ed435c3581e74dd2a7e29f8e288c (patch)
tree09237c5c5f4238e946b7263fe3e2cf4eaf92eb15 /main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol
parent701538f3018c08a5ab6406f119a137b0cf83a212 (diff)
[Debbugger] Added unit tests
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol/MonoDevelop.Debugger.VsCodeDebugProtocol/VsCodeStackFrame.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol/MonoDevelop.Debugger.VsCodeDebugProtocol/VsCodeStackFrame.cs b/main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol/MonoDevelop.Debugger.VsCodeDebugProtocol/VsCodeStackFrame.cs
index ee0c8e77ac..a72aeb7634 100644
--- a/main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol/MonoDevelop.Debugger.VsCodeDebugProtocol/VsCodeStackFrame.cs
+++ b/main/src/addins/MonoDevelop.Debugger.VSCodeDebugProtocol/MonoDevelop.Debugger.VsCodeDebugProtocol/VsCodeStackFrame.cs
@@ -10,7 +10,7 @@ using VsFormat = Microsoft.VisualStudio.Shared.VSCodeDebugProtocol.Messages.Stac
namespace MonoDevelop.Debugger.VsCodeDebugProtocol
{
- class VsCodeStackFrame : Mono.Debugging.Client.StackFrame
+ public class VsCodeStackFrame : Mono.Debugging.Client.StackFrame
{
public static VsFormat GetStackFrameFormat (EvaluationOptions evalOptions)
{
@@ -72,7 +72,7 @@ namespace MonoDevelop.Debugger.VsCodeDebugProtocol
throw new ArgumentException ();
}
- static byte[] HexToByteArray (string hex)
+ public static byte[] HexToByteArray (string hex)
{
if (hex.Length % 2 == 1)
return null;