Log constructor

Log()

Implementation

Log()
  : super(
      methodName: "log",
      targetType: NativeMethodTarget.number,
      arity: 0,
      function: (target, interpreter, arguments) {
        return math.log(target);
      },
    );