From 090868ff4a90a63de522da6d2083a1e6c3845c95 Mon Sep 17 00:00:00 2001 From: Melanie Date: Mon, 31 Aug 2009 11:42:54 +0100 Subject: Change the return value if the compiler to "object" to allow compilers to return dynamic method objects --- OpenSim/Region/ScriptEngine/Interfaces/ICompiler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/ScriptEngine/Interfaces') diff --git a/OpenSim/Region/ScriptEngine/Interfaces/ICompiler.cs b/OpenSim/Region/ScriptEngine/Interfaces/ICompiler.cs index 7456ca9..1e35559 100644 --- a/OpenSim/Region/ScriptEngine/Interfaces/ICompiler.cs +++ b/OpenSim/Region/ScriptEngine/Interfaces/ICompiler.cs @@ -34,10 +34,10 @@ namespace OpenSim.Region.ScriptEngine.Interfaces { public interface ICompiler { - string PerformScriptCompile(string source, string asset, UUID ownerID); + object PerformScriptCompile(string source, string asset, UUID ownerID); string[] GetWarnings(); Dictionary, KeyValuePair> LineMap(); - string GetAssemblyName(UUID assetID); + object GetCompilerOutput(UUID assetID); } } -- cgit v1.1