ClValue.emptyList constructor

ClValue.emptyList(
  1. ClTypeDescriptor listType
)

Implementation

ClValue.emptyList(ClTypeDescriptor listType) {
  clTypeDescriptor = ClListTypeDescriptor(listType);
  ByteDataWriter mem = ByteDataWriter(endian: Endian.little);
  mem.writeInt32(0);
  bytes = mem.toBytes();
  parsed = "";
}