markProxyCapturesSuperArgs static method

void markProxyCapturesSuperArgs(
  1. String bridgedTypeName
)

Mark bridgedTypeName as a proxy that needs super(...) args captured onto the InterpretedInstance. See _superArgCapturingProxies.

Implementation

static void markProxyCapturesSuperArgs(String bridgedTypeName) {
  _superArgCapturingProxies.add(bridgedTypeName);
}