locate<O> method

LocationalTransformerExpression<E, O> locate<O>(
  1. O action(
    1. String source,
    2. int start,
    3. int end,
    4. E result,
    )
)

Implementation

LocationalTransformerExpression<E, O> locate<O>(
    O Function(String source, int start, int end, E result) action) {
  return LocationalTransformerExpression(this, action);
}