mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-29 10:24:38 +00:00
AS3 pcode - Use Undefined as default keyword for value kind
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
# Change Log
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [Unreleased]
|
||||
### Changed
|
||||
- AS3 pcode - Use Undefined as default keyword for value kind
|
||||
|
||||
## [13.0.1] - 2021-02-09
|
||||
### Fixed
|
||||
- AS3 break loop in catch clause
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user