aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.Scripting/EmbeddedJVM/StackFrame.cs
blob: afca7a99894efc03243c62ff58402ecd881b22ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Scripting.EmbeddedJVM.Types;

namespace OpenSim.Scripting.EmbeddedJVM
{
    public class StackFrame
    {
        public BaseType[] LocalVariables;
        public Stack<BaseType> OpStack = new Stack<BaseType>();

        public int ReturnPC = 0;
        public ClassRecord CallingClass = null;

        public StackFrame()
        {
            LocalVariables = new BaseType[20];
        }

    }
}