execute method

  1. @override
DartBlockValue? execute(
  1. DartBlockArbiter arbiter,
  2. List<DartBlockValue> args
)
override

Execute the built-in function with the provided arguments.

Arguments are already validated by FunctionCallStatement.preExecute before this method is called, so no additional validation is needed here.

Implementation

@override
DartBlockValue? execute(DartBlockArbiter arbiter, List<DartBlockValue> args) {
  return implementation(arbiter, args);
}