import resolve, { traverse, toString } from '../resolve'; import error from './error'; const index = { create({array, index}) { return { parseType: 'index', array, index, } }, resolve(fn, node, scope, context){ let {result: index} = resolve(fn, node.index, scope, context); let {result: array} = resolve(fn, node.array, scope, context); if ( index.valueType === 'number' && Number.isInteger(index.value) && array.parseType === 'array' ){ if (index.value < 1 || index.value > array.values.length){ context.error({ type: 'warning', message: `Index of ${index.value} is out of range for an array` + ` of length ${array.values.length}`, }); } let selection = array.values[index.value - 1]; if (selection){ return resolve(fn, selection, scope, context); } } else if (fn === 'reduce'){ if (array.parseType !== 'array'){ const message = `Can not get the index of a non-array node: ${node.array.toString()} = ${array.toString()}` context.error(message); return { result: error.create({ node, error: message, }), context, }; } else if (!index.isInteger){ const message = `${array.toString()} is not an integer index of the array` context.error(message); return { result: error.create({ node, error: message, }), context, }; } } return { result: index.create({ index, array, }), context, }; }, toString(node){ return `${toString(node.array)}[${toString(node.index)}]`; }, traverse(node, fn){ fn(node); traverse(node.array, fn); traverse(node.index, fn); }, } export default index;