startMap method
void
startMap()
This method starts a map definition.
This method call needs to be followed by 0 to n addKey + add... value calls. The map definition needs to be finished with an end call. It is also possible to add nested vector or map by calling startVector / startMap after calling addKey.
Implementation
void startMap() {
_integrityCheckOnValueAddition();
_stackPointers.add(_StackPointer(_stack.length, false));
}