2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / class / corlib / System.Reflection.Emit / LocalBuilder.cs
1
2 //
3 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining
6 // a copy of this software and associated documentation files (the
7 // "Software"), to deal in the Software without restriction, including
8 // without limitation the rights to use, copy, modify, merge, publish,
9 // distribute, sublicense, and/or sell copies of the Software, and to
10 // permit persons to whom the Software is furnished to do so, subject to
11 // the following conditions:
12 // 
13 // The above copyright notice and this permission notice shall be
14 // included in all copies or substantial portions of the Software.
15 // 
16 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 //
24
25 //
26 // System.Reflection.Emit/LocalBuilder.cs
27 //
28 // Authors:
29 //   Paolo Molaro (lupus@ximian.com)
30 //   Martin Baulig (martin@gnome.org)
31 //   Miguel de Icaza (miguel@ximian.com)
32 //
33 // (C) 2001, 2002 Ximian, Inc.  http://www.ximian.com
34 //
35
36 using System;
37 using System.Reflection;
38 using System.Reflection.Emit;
39 using System.Globalization;
40 using System.Runtime.CompilerServices;
41 using System.Diagnostics.SymbolStore;
42
43 namespace System.Reflection.Emit {
44 #if NET_2_0
45         public sealed class LocalBuilder : LocalVariableInfo {
46 #else
47         public sealed class LocalBuilder {
48 #endif
49
50 #if NET_2_0
51                 // Some fields are already defined in LocalVariableInfo
52                 #region Sync with reflection.h
53                 private string name;
54                 #endregion
55 #else
56                 #region Sync with reflection.h
57                 private Type type;
58                 internal bool is_pinned;
59                 internal ushort position;
60                 private string name;
61                 #endregion
62 #endif
63                 
64                 internal ILGenerator ilgen;
65                 int startOffset;
66                 int endOffset;
67
68                 internal LocalBuilder (Type t, ILGenerator ilgen)
69                 {
70                         this.type = t;
71                         this.ilgen = ilgen;
72                 }
73
74                 public void SetLocalSymInfo (string lname, int startOffset, int endOffset)
75                 {
76                         name = lname;
77                         this.startOffset = startOffset;
78                         this.endOffset = endOffset;
79                 }
80
81                 public void SetLocalSymInfo (string lname)
82                 {
83                         SetLocalSymInfo (lname, 0, 0);
84                 }
85
86 #if NET_2_0
87                 override
88 #endif
89                 public Type LocalType
90                 {
91                         get {
92                                 return type;
93                         }
94                 }
95
96 #if NET_2_0
97                 public override bool IsPinned
98                 {
99                         get {
100                                 return is_pinned;
101                         }
102                 }
103
104                 public override int LocalIndex
105                 {
106                         get {
107                                 return position;
108                         }
109                 }
110 #endif
111
112                 internal string Name {
113                         get { return name; }
114                 }
115                 
116                 internal int StartOffset {
117                         get { return startOffset; }
118                 }
119                 
120                 internal int EndOffset {
121                         get { return endOffset; }
122                 }
123         }
124 }