visitKeyedWrite method
Implementation
@override
void visitKeyedWrite(KeyedWrite ast, C context) {
ast.receiver.visit(this, context);
ast.key.visit(this, context);
ast.value.visit(this, context);
}
@override
void visitKeyedWrite(KeyedWrite ast, C context) {
ast.receiver.visit(this, context);
ast.key.visit(this, context);
ast.value.visit(this, context);
}