list property

Function list
getter/setter pair

// Static methods ///////////////////////////////////

Implementation

// These convenience methods can be used as callbacks and should be called with "this" context set to a Parser instance.

static Function list = (count, itemCallback) {
  return (scope) {
    // print("list  offset: ${scope.offset} relativeOffset: ${scope.relativeOffset} ");
    return scope.parseList(count, itemCallback);
  };
};