
  TYPE
    clt$parameter_value = record
      specified: boolean,
      case passing_method: clt$parameter_passing_method of
      = clc$pass_by_value =
        value: ^clt$data_value, {NIL if omitted and no default}
      = clc$pass_by_reference =
        variable: ^clt$variable_ref_expression, {NIL if omitted and no default}
      casend,
    recend;

*copyc clt$data_value
*copyc clt$parameter_passing_method
*copyc clt$variable_ref_expression
