@@ -122,6 +122,9 @@ public DataObject load(List<DataObject> args, final int SCOPE_ID) {
122
122
printDataObjectInformation (convertToDataObject (new Object [] {
123
123
2 , "test" , null , Character .class
124
124
}), useLangShellsPrintDebug , INNER_SCOPE_ID );
125
+ printDataObjectInformation (convertToDataObject (new byte [] {
126
+ 2 , -1 , (byte )255 , 127 , -128 , 0 , (byte )'A' , (byte )'B' , (byte )'µ' , (byte )1555
127
+ }), useLangShellsPrintDebug , INNER_SCOPE_ID );
125
128
printDataObjectInformation (convertToDataObject (42 ), useLangShellsPrintDebug , INNER_SCOPE_ID );
126
129
printDataObjectInformation (convertToDataObject (true ), useLangShellsPrintDebug , INNER_SCOPE_ID );
127
130
printDataObjectInformation (convertToDataObject (42.2f ), useLangShellsPrintDebug , INNER_SCOPE_ID );
@@ -133,6 +136,10 @@ public DataObject load(List<DataObject> args, final int SCOPE_ID) {
133
136
printDataObjectInformation (convertToDataObject (Boolean .class ), useLangShellsPrintDebug , INNER_SCOPE_ID );
134
137
printDataObjectInformation (convertToDataObject (Long .class ), useLangShellsPrintDebug , INNER_SCOPE_ID );
135
138
printDataObjectInformation (convertToDataObject (Class .class ), useLangShellsPrintDebug , INNER_SCOPE_ID );
139
+ printDataObjectInformation (convertToDataObject (Object [].class ), useLangShellsPrintDebug , INNER_SCOPE_ID ); //DataType.ARRAY
140
+ printDataObjectInformation (convertToDataObject (DataObject [].class ), useLangShellsPrintDebug , INNER_SCOPE_ID ); //DataType.ARRAY
141
+ printDataObjectInformation (convertToDataObject (Byte [].class ), useLangShellsPrintDebug , INNER_SCOPE_ID ); //DataType.ARRAY
142
+ printDataObjectInformation (convertToDataObject (byte [].class ), useLangShellsPrintDebug , INNER_SCOPE_ID ); //ByteBuffer.ARRAY
136
143
137
144
return null ;
138
145
});
0 commit comments