*/
export function parseCommaSeparatedList(stringValue: IScalarValue): ISequenceValue {
const input = stringValue.value;
const positionOffset = stringValue.range.getStartPosition();
let pos = 0;
const isWhitespace = (char: string): boolean => char === ' ' || char === '\t';
while (pos < input.length) {
// Skip leading whitespace
while (pos < input.length && isWhitespace(input[pos])) {