Correct the representation of the automatic null string
parent
e2a0a04beb
commit
b7a4613a0d
|
@ -153,7 +153,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
|
||||||
return new Constant(p, constantType, "0.0");
|
return new Constant(p, constantType, "0.0");
|
||||||
case "string":
|
case "string":
|
||||||
case "key":
|
case "key":
|
||||||
return new Constant(p, constantType, "");
|
return new Constant(p, constantType, "\"\"");
|
||||||
case "list":
|
case "list":
|
||||||
ArgumentList al = new ArgumentList(p);
|
ArgumentList al = new ArgumentList(p);
|
||||||
return new ListConstant(p, al);
|
return new ListConstant(p, al);
|
||||||
|
|
Loading…
Reference in New Issue