call method
Object?
call(
- InterpreterVisitor visitor,
- List<
Object?> positionalArguments, [ - Map<
String, Object?> namedArguments = const {}, - List<
RuntimeType> ? typeArguments = const [],
override
Implementation
@override
Object? call(InterpreterVisitor visitor, List<Object?> positionalArguments,
[Map<String, Object?> namedArguments = const {},
List<RuntimeType>? typeArguments = const []]) {
final actualPositionalArgs = [target, ...positionalArguments];
Logger.debug(
"[BoundExtensionCallable] Calling extension member bound to ${target?.runtimeType}");
return extensionCallable.call(
visitor, actualPositionalArgs, namedArguments, typeArguments);
}