@Override
public void visitAngularJSRepeatExpression(AngularJSRepeatExpression repeatExpression) {
if (scopeMatches(original, repeatExpression)) {
for (Map.Entry<String, String> entry : NG_REPEAT_IMPLICITS.entrySet()) {
consumer.consume(new ImplicitJSVariableImpl(entry.getKey(), entry.getValue(), repeatExpression));
}
}
super.visitAngularJSRepeatExpression(repeatExpression);
}
});