Refactor XEngine parser as per suggestions from mikem

This commit is contained in:
Melanie Thielker
2008-09-23 13:28:17 +00:00
parent aef2afd3be
commit d95794d05c
5 changed files with 32 additions and 85 deletions

View File

@@ -153,7 +153,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.CodeTools
return new Constant(p, constantType, "0.0");
case "string":
case "key":
return new Constant(p, constantType, "\"\"");
return new Constant(p, constantType, "");
case "list":
ArgumentList al = new ArgumentList(p);
return new ListConstant(p, al);