Make PdtExpression.Empty public.

This commit is contained in:
2023-05-18 13:28:46 +08:00
parent bc083541aa
commit 3d09ec8c94
2 changed files with 13 additions and 10 deletions

View File

@@ -247,7 +247,7 @@ namespace Cryville.Common.Pdt {
break;
case ':':
case ';':
var exp = c == ';' ? _emptyexp : GetExp();
var exp = c == ';' ? PdtExpression.Empty : GetExp();
InterpretObjectInternal<PropertyListAttribute>(pcflag, type, pkey, result, type => _binder.ChangeType(exp, type, null));
break;
default: