expandBackWhile abstract method

void expandBackWhile(
  1. bool test(
    1. String
    )
)

Expands the range with the preceding characters satisffying test.

Iterates back through the characters preceding the current range and includes them into the range until finding a character that test returns false for.

Implementation

void expandBackWhile(bool Function(String) test);