From 8b17e4da10c6d5cb371909ec1d79c35c0ff55f8d Mon Sep 17 00:00:00 2001 From: Tedd Hansen Date: Fri, 10 Aug 2007 16:22:20 +0000 Subject: Renamed Compiler.LSL to Compiler.LSO --- .../DotNetEngine/Compiler/LSL/LSL_BaseClass.cs | 58 ---------------------- 1 file changed, 58 deletions(-) delete mode 100644 OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs') diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs deleted file mode 100644 index b88a905..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.IO; - -namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL -{ - public partial class LSL_BaseClass - { - //public MemoryStream LSLStack = new MemoryStream(); - public Stack LSLStack = new Stack(); - public Dictionary StaticVariables = new Dictionary(); - public Dictionary GlobalVariables = new Dictionary(); - public Dictionary LocalVariables = new Dictionary(); - //public System.Collections.Generic.List FunctionList = new System.Collections.Generic.List(); - //public void AddFunction(String x) { - // FunctionList.Add(x); - //} - //public Stack LSLStack = new Stack; - //public struct StackItemStruct - //{ - // public LSO_Enums.Variable_Type_Codes ItemType; - // public object Data; - //} - public UInt32 State = 0; - public LSL_BuiltIn_Commands_Interface LSL_Builtins; - public LSL_BuiltIn_Commands_Interface GetLSL_BuiltIn() - { - return LSL_Builtins; - } - - - public LSL_BaseClass() { } - - - public virtual int OverrideMe() - { - return 0; - } - public void Start(LSL_BuiltIn_Commands_Interface LSLBuiltins) - { - LSL_Builtins = LSLBuiltins; - - Common.SendToLog("OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL.LSL_BaseClass.Start() called"); - //LSL_Builtins.llSay(0, "Test"); - return; - } - - public void AddToStatic(UInt32 index, object obj) - { - Common.SendToDebug("AddToStatic: " + index + " type: " + obj.GetType()); - StaticVariables.Add(index, obj); - } - - - - } -} -- cgit v1.1