You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/igormaznitsa/jbbp/compiler/JBBPCompiler.java
+8-13Lines changed: 8 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -165,16 +165,15 @@ private StructStackItem(final int namedFieldCounter, final int startStructureOff
165
165
publicstaticfinalintFLAG_LITTLE_ENDIAN = 0x40;
166
166
167
167
/**
168
-
* The Flag shows that next byte contains extra flags.
168
+
* The Flag shows that the byte code is wide and contains extra byte in the next position of compiled block.
169
169
*/
170
-
publicstaticfinalintFLAG_EXTRA_FLAGS = 0x80;
170
+
publicstaticfinalintFLAG_WIDE = 0x80;
171
171
172
172
/**
173
-
* The Extra flag shows that the field is an array which size is defined
174
-
* by an expression or the array is unsized and must be read till the end of a
173
+
* The flag (placed only in the second byte of wide codes) shows that the field is an array which calculated size or unlimited and must be read till the end of a
0 commit comments