makeTopDictIndex function

dynamic makeTopDictIndex(
  1. dynamic topDict
)

Implementation

makeTopDictIndex(topDict) {
  var t = Record('Top DICT INDEX', [
      {"name": 'topDicts', "type": 'INDEX', "value": []}
  ], null);
  t.topDicts = [{"name": 'topDict_0', "type": 'TABLE', "value": topDict}];
  return t;
}