applySequence static method
Get the result of applying a set of edits
to the given code
. Edits
are applied in the order they appear in edits
.
Implementation
static String applySequence(String code, Iterable<SourceEdit> edits) =>
applySequenceOfEdits(code, edits);