diff options
author | Tedd Hansen | 2007-12-30 16:34:54 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-12-30 16:34:54 +0000 |
commit | 527b5f86a2442162f9cf1daf3ebd9129fabdea22 (patch) | |
tree | 84ffb8f9ed0a537fb8b80fff1ffac25dea2fe302 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler | |
parent | Added comments to ScriptEngine classes that explains what their purpose is (diff) | |
download | opensim-SC_OLD-527b5f86a2442162f9cf1daf3ebd9129fabdea22.zip opensim-SC_OLD-527b5f86a2442162f9cf1daf3ebd9129fabdea22.tar.gz opensim-SC_OLD-527b5f86a2442162f9cf1daf3ebd9129fabdea22.tar.bz2 opensim-SC_OLD-527b5f86a2442162f9cf1daf3ebd9129fabdea22.tar.xz |
In this commit I am using an editor feature called "Save All" before I commit.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs index 8e37798..dfdf8f4 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSConverter.cs | |||
@@ -33,6 +33,10 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
33 | { | 33 | { |
34 | public class LSL2CSConverter | 34 | public class LSL2CSConverter |
35 | { | 35 | { |
36 | |||
37 | |||
38 | // Uses regex to convert LSL code to C# code. | ||
39 | |||
36 | //private Regex rnw = new Regex(@"[a-zA-Z0-9_\-]", RegexOptions.Compiled); | 40 | //private Regex rnw = new Regex(@"[a-zA-Z0-9_\-]", RegexOptions.Compiled); |
37 | private Dictionary<string, string> dataTypes = new Dictionary<string, string>(); | 41 | private Dictionary<string, string> dataTypes = new Dictionary<string, string>(); |
38 | private Dictionary<string, string> quotes = new Dictionary<string, string>(); | 42 | private Dictionary<string, string> quotes = new Dictionary<string, string>(); |