export function isQuotedConstantWithApostrophe(obj: unknown): obj is QuotedConstantWithApostrophe {
    const qca = obj as QuotedConstantWithApostrophe;

    return typeof qca !== 'undefined' && qca.typename === typenameQuotedConstantWithApostrophe;
}