From 038def98513e614a066b0ab78724b115801cb4b2 Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Fri, 9 Sep 2016 19:59:45 +0200 Subject: [PATCH] Add missing file. --- .../Mono.Debugger.Soft/LocalScope.cs | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/LocalScope.cs diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/LocalScope.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/LocalScope.cs new file mode 100644 index 00000000000..c5c3673d478 --- /dev/null +++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/LocalScope.cs @@ -0,0 +1,35 @@ +using System; + +namespace Mono.Debugger.Soft +{ + public class LocalScope : Mirror { + + MethodMirror method; + int live_range_start, live_range_end; + + internal LocalScope (VirtualMachine vm, MethodMirror method, int live_range_start, int live_range_end) : base (vm, 0) { + this.method = method; + this.live_range_start = live_range_start; + this.live_range_end = live_range_end; + } + + public MethodMirror Method { + get { + return method; + } + } + + internal int LiveRangeStart { + get { + return live_range_start; + } + } + + internal int LiveRangeEnd { + get { + return live_range_end; + } + } + } +} + -- 2.11.4.GIT