AS3 pcode - Use Undefined as default keyword for value kind

This commit is contained in:
Jindra Petřík
2021-02-10 07:01:42 +01:00
parent c3a4ee3996
commit c327c99198
2 changed files with 5 additions and 1 deletions

View File

@@ -197,7 +197,7 @@ public class ValueKind {
ret = "Null()";
break;
case CONSTANT_Undefined:
ret = "Void()";
ret = "Undefined()"; //"Void()" is also synonym
break;
case CONSTANT_Namespace:
case CONSTANT_PackageInternalNs: