addDeletion abstract method

void addDeletion(
  1. SourceRange range
)

Add a deletion of text specified by the given range. The range is relative to the original source. This is fully equivalent to

addSimpleReplacement(range, '');

Implementation

void addDeletion(SourceRange range);