if (input[to] == until[i]) {
int length = to - startLocation;
int[] chars = new int[length];
System.arraycopy(input, startLocation, chars, 0, length);
return new SkippedNode(chars, startLocation);
}
}
}
return new SkippedNode(new int[0], startLocation);
}