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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2016-09-09 20:59:45 +0300
committerZoltan Varga <vargaz@gmail.com>2016-09-09 20:59:45 +0300
commit038def98513e614a066b0ab78724b115801cb4b2 (patch)
treee3428c1f73263c0b6e9bb4e21cfa5a26ca3d6f50 /mcs/class/Mono.Debugger.Soft
parent7e3028c2c8164315251fd5f6b1eb82efdc6af7cc (diff)
Add missing file.
Diffstat (limited to 'mcs/class/Mono.Debugger.Soft')
-rw-r--r--mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/LocalScope.cs35
1 files changed, 35 insertions, 0 deletions
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;
+ }
+ }
+ }
+}
+