diagnoseEntry method

void diagnoseEntry(
  1. int marker_kind, [
  2. int? error_token
])

Implementation

void diagnoseEntry(int marker_kind, [int? error_token]) {
  if (null != error_token) {
    diagnoseEntry2(marker_kind, error_token);
  } else {
    diagnoseEntry1(marker_kind);
  }
}