porffor 0.2.0-9569702 → 0.2.0-9ca9aed
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/codeGen.js +12 -1
- package/package.json +1 -1
package/compiler/codeGen.js
CHANGED
@@ -1013,7 +1013,18 @@ const TYPES = {
|
|
1013
1013
|
|
1014
1014
|
// these are not "typeof" types but tracked internally
|
1015
1015
|
_array: 0x10,
|
1016
|
-
_regexp: 0x11
|
1016
|
+
_regexp: 0x11,
|
1017
|
+
|
1018
|
+
// typed arrays
|
1019
|
+
_int8array: 0x20,
|
1020
|
+
_uint8array: 0x21,
|
1021
|
+
_uint8clampedarray: 0x22,
|
1022
|
+
_int16array: 0x23,
|
1023
|
+
_uint16array: 0x24,
|
1024
|
+
_int32array: 0x25,
|
1025
|
+
_uint32array: 0x26,
|
1026
|
+
_float32array: 0x27,
|
1027
|
+
_float64array: 0x28,
|
1017
1028
|
};
|
1018
1029
|
|
1019
1030
|
const TYPE_NAMES = {
|
package/package.json
CHANGED