do not check order sequence if option /order was not used
[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.Runtime.InteropServices;
42 using System.Diagnostics.SymbolStore;
43
44 namespace System.Reflection.Emit {
45         [ComVisible (true)]
46         [ComDefaultInterface (typeof (_LocalBuilder))]
47         [ClassInterface (ClassInterfaceType.None)]
48         [StructLayout (LayoutKind.Sequential)]
49         public sealed class LocalBuilder : LocalVariableInfo, _LocalBuilder {
50
51                 // Some fields are already defined in LocalVariableInfo
52                 #region Sync with reflection.h
53                 private string name;
54                 #endregion
55                 
56                 internal ILGenerator ilgen;
57                 int startOffset;
58                 int endOffset;
59
60                 internal LocalBuilder (Type t, ILGenerator ilgen)
61                 {
62                         this.type = t;
63                         this.ilgen = ilgen;
64                 }
65
66                 public void SetLocalSymInfo (string name, int startOffset, int endOffset)
67                 {
68                         this.name = name;
69                         this.startOffset = startOffset;
70                         this.endOffset = endOffset;
71                 }
72
73                 public void SetLocalSymInfo (string name)
74                 {
75                         SetLocalSymInfo (name, 0, 0);
76                 }
77
78                 public override Type LocalType
79                 {
80                         get {
81                                 return type;
82                         }
83                 }
84
85                 public override bool IsPinned
86                 {
87                         get {
88                                 return is_pinned;
89                         }
90                 }
91
92                 public override int LocalIndex
93                 {
94                         get {
95                                 return position;
96                         }
97                 }
98
99                 internal string Name {
100                         get { return name; }
101                 }
102                 
103                 internal int StartOffset {
104                         get { return startOffset; }
105                 }
106                 
107                 internal int EndOffset {
108                         get { return endOffset; }
109                 }
110
111                 void _LocalBuilder.GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
112                 {
113                         throw new NotImplementedException ();
114                 }
115
116                 void _LocalBuilder.GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo)
117                 {
118                         throw new NotImplementedException ();
119                 }
120
121                 void _LocalBuilder.GetTypeInfoCount (out uint pcTInfo)
122                 {
123                         throw new NotImplementedException ();
124                 }
125
126                 void _LocalBuilder.Invoke (uint dispIdMember, [In] ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr)
127                 {
128                         throw new NotImplementedException ();
129                 }
130         }
131 }