diff options
author | Tedd Hansen | 2007-08-12 17:04:09 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-12 17:04:09 +0000 |
commit | 7a5474ec2883357b1874247b838d0e3607552104 (patch) | |
tree | e34090437bc58ac67ada6cd3ec714fbd83b28947 /OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |
parent | LSL ScriptEngine now only needs to inherit from BaseClass and we will be MUCH... (diff) | |
download | opensim-SC-7a5474ec2883357b1874247b838d0e3607552104.zip opensim-SC-7a5474ec2883357b1874247b838d0e3607552104.tar.gz opensim-SC-7a5474ec2883357b1874247b838d0e3607552104.tar.bz2 opensim-SC-7a5474ec2883357b1874247b838d0e3607552104.tar.xz |
Script now compiles unsuccessfully
(unknown datatypes, no references)
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs index b5a4a39..33be6ec 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs | |||
@@ -7,7 +7,7 @@ using System.CodeDom.Compiler; | |||
7 | 7 | ||
8 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | 8 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL |
9 | { | 9 | { |
10 | class Compiler | 10 | public class Compiler |
11 | { | 11 | { |
12 | private LSL2CS.Converter.LSL2CSConverter LSL_Converter = new LSL2CS.Converter.LSL2CSConverter(); | 12 | private LSL2CS.Converter.LSL2CSConverter LSL_Converter = new LSL2CS.Converter.LSL2CSConverter(); |
13 | private CSharpCodeProvider codeProvider = new CSharpCodeProvider(); | 13 | private CSharpCodeProvider codeProvider = new CSharpCodeProvider(); |
@@ -15,7 +15,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
15 | public string Compile(string LSOFileName) | 15 | public string Compile(string LSOFileName) |
16 | { | 16 | { |
17 | 17 | ||
18 | 18 | ||
19 | string OutFile = Path.GetFileNameWithoutExtension(LSOFileName); | 19 | string OutFile = Path.GetFileNameWithoutExtension(LSOFileName); |
20 | 20 | ||
21 | // TODO: Add error handling | 21 | // TODO: Add error handling |
@@ -37,7 +37,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | |||
37 | } | 37 | } |
38 | } | 38 | } |
39 | 39 | ||
40 | 40 | ||
41 | return OutFile; | 41 | return OutFile; |
42 | } | 42 | } |
43 | 43 | ||