public void IsClsCompliant(IMemberContext ctx)
        {
            if (parameter_type.IsCLSCompliant())
            {
                return;
            }

            ctx.Module.Compiler.Report.Warning(3001, 1, Location,
                                               "Argument type `{0}' is not CLS-compliant", parameter_type.GetSignatureForError());
        }