Merge pull request #820 from brendanzagaeski/master
[mono.git] / mcs / class / corlib / System.Reflection.Emit / StackBehaviour.cs
index 0b4d45637b233fff2b301c0047bcb7ff32137d89..16a271495926aa4e1fd61c990b76076dc7b89328 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if !FULL_AOT_RUNTIME || IOS_REFLECTION
+using System.Runtime.InteropServices;
 
 namespace System.Reflection.Emit {
 
        /// <summary>
        ///  Describes how values are pushed onto or popped off a stack.
        /// </summary>
+       [ComVisible (true)]
+       [Serializable]
        public enum StackBehaviour {
 
                /// <summary>
@@ -143,7 +147,10 @@ namespace System.Reflection.Emit {
 
                /// <summary>
                /// </summary>
-               Varpush = 0x1B
+               Varpush = 0x1B,
+               Popref_popi_pop1 = 0x1C
+
        }
 
 }
+#endif