Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / class / corlib / System.Reflection.Emit / StackBehaviour.cs
index 0b4d45637b233fff2b301c0047bcb7ff32137d89..689197c919cba83dcb55d5a2a50417a6e5cc7112 100644 (file)
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
+#if !FULL_AOT_RUNTIME
+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