ref3<T, A1, A2, A3> method

Parser<T> ref3<T, A1, A2, A3>(
  1. Parser<T> callback(
    1. A1,
    2. A2,
    3. A3
    ),
  2. A1 arg1,
  3. A2 arg2,
  4. A3 arg3,
)
inherited

Reference to a production callback parametrized with tree arguments arg1, arg2, and arg3.

Implementation

Parser<T> ref3<T, A1, A2, A3>(
        Parser<T> Function(A1, A2, A3) callback, A1 arg1, A2 arg2, A3 arg3) =>
    reference.ref3<T, A1, A2, A3>(callback, arg1, arg2, arg3);