mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Change the return value if the compiler to "object" to allow compilers
to return dynamic method objects
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user