enterCall static method

void enterCall()

Records entry into an interpreted call frame.

Implementation

static void enterCall() {
  callCount++;
  depth++;
  if (depth > maxDepth) maxDepth = depth;
}