Xengine: also missed a few newlines account

LSLKeyTest
UbitUmarov 2016-08-31 10:39:01 +01:00
parent eca0ebab9d
commit 0f993a1278
2 changed files with 7 additions and 3 deletions

View File

@ -1021,6 +1021,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
private void GenerateLine(StringBuilder sb) private void GenerateLine(StringBuilder sb)
{ {
sb.Append("\n"); sb.Append("\n");
m_CSharpLine++;
m_CSharpCol = 1;
} }
/// <summary> /// <summary>
@ -1032,6 +1034,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
{ {
sb.Append(s); sb.Append(s);
sb.Append("\n"); sb.Append("\n");
m_CSharpLine++;
m_CSharpCol = 1;
} }
/// <summary> /// <summary>

View File

@ -109,7 +109,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
m_insertCoopTerminationCalls = m_scriptEngine.Config.GetString("ScriptStopStrategy", "abort") == "co-op"; m_insertCoopTerminationCalls = m_scriptEngine.Config.GetString("ScriptStopStrategy", "abort") == "co-op";
// Get file prefix from scriptengine name and make it file system safe: // Get file prefix from scriptengine name and make it file system safe:
FilePrefix = "CommonCompiler"; FilePrefix = "";
foreach (char c in Path.GetInvalidFileNameChars()) foreach (char c in Path.GetInvalidFileNameChars())
{ {
FilePrefix = FilePrefix.Replace(c, '_'); FilePrefix = FilePrefix.Replace(c, '_');
@ -441,8 +441,8 @@ namespace SecondLife
{{ {{
public class {0} : {1} public class {0} : {1}
{{ {{
public {0}({2}) : base({3}) {{}} public {0}({2}) : base({3}) {{}}"
", ,
className, className,
baseClassName, baseClassName,
constructorParameters != null constructorParameters != null