mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Attempt to rearrange some of the directories
This commit is contained in:
22
OpenSim.Scripting/EmbeddedJVM/StackFrame.cs
Normal file
22
OpenSim.Scripting/EmbeddedJVM/StackFrame.cs
Normal file
@@ -0,0 +1,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];
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user