export function isLCLambdaExpression(obj: unknown): obj is ILCLambdaExpression {
    const otherLCLambdaExpression = obj as ILCLambdaExpression;

    return (
        typeof otherLCLambdaExpression !== 'undefined' &&