/// <summary>
 /// Generates the property which decides if a compiled property is complex.
 /// </summary>
 /// <param name="sb">The class writer.</param>
 /// <param name="info">The property info.</param>
 private static void IsComplexProperty(ClassWriter sb, PropertyInfo info)
 {
     sb.AddProperty(
         $"Gets or sets a value indicating whether the {info.Name} condition should be compiled as a Complex condition.",
         AccessLevel.Public,
         "bool",
         $"{info.Name}_IsComplex");
 }