Skip to content
Snippets Groups Projects
Commit 844b8f27 authored by Adam Welc's avatar Adam Welc
Browse files

Added support for serializing S4 objects.

parent a3320e87
Branches
No related tags found
No related merge requests found
......@@ -1522,6 +1522,10 @@ public class RSerialize {
break;
}
case S4SXP: {
break;
}
/*
* FastR scalar, (length 1) "vectors"
*/
......
......@@ -46,7 +46,7 @@ public enum SEXPTYPE {
EXTPTRSXP(22, RExternalPtr.class), /* external pointer */
WEAKREFSXP(23), /* weak reference */
RAWSXP(24, new Class<?>[]{RRawVector.class, RRaw.class}), /* raw bytes */
S4SXP(25), /* S4 non-vector */
S4SXP(25, RS4Object.class), /* S4 non-vector */
NEWSXP(30), /* fresh node created in new page */
FREESXP(31), /* node released by GC */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment