**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.Reflection.Emit / LocalBuilder.cs
blob9588db75139dccc85c0eb59061354598f75e7068
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.
26 // System.Reflection.Emit/LocalBuilder.cs
28 // Authors:
29 // Paolo Molaro (lupus@ximian.com)
30 // Martin Baulig (martin@gnome.org)
31 // Miguel de Icaza (miguel@ximian.com)
33 // (C) 2001, 2002 Ximian, Inc. http://www.ximian.com
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;
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
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
64 internal ILGenerator ilgen;
66 internal LocalBuilder (Type t, ILGenerator ilgen)
68 this.type = t;
69 this.ilgen = ilgen;
72 public void SetLocalSymInfo (string lname, int startOffset, int endOffset)
74 // nop
77 public void SetLocalSymInfo (string lname)
79 SetLocalSymInfo (lname, 0, 0);
82 #if NET_2_0
83 override
84 #endif
85 public Type LocalType
87 get {
88 return type;
92 #if NET_2_0
93 public override bool IsPinned
95 get {
96 return is_pinned;
100 public override int LocalIndex
102 get {
103 return position;
106 #endif