sorry for not making my question more clear. Let's say you have:
sourced_vec <- c(1L, 2L, 3L, 4L)
stop("some error")
vec 2<- c(1L, 2L, 3L, 4L)
vec3v<- c(1L, 2L, 3L, 4L)
and it stops on stop("some error")
how to continue sourcing where error left off? i.e. in vec 2<- c(1L, 2L, 3L, 4L) or in the line that cause the error?