Change the return value if the compiler to "object" to allow compilers

to return dynamic method objects
This commit is contained in:
Melanie
2009-08-31 11:42:54 +01:00
parent d2eba2cf22
commit 090868ff4a
4 changed files with 7 additions and 7 deletions

View File

@@ -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<int, int>, KeyValuePair<int, int>>
LineMap();
string GetAssemblyName(UUID assetID);
object GetCompilerOutput(UUID assetID);
}
}