microsoft / Power-Fx

Power Fx low-code programming language
MIT License
3.15k stars 309 forks source link

Remove AllowSetExpandedTypes temporary feature flag #2461

Open gregli-msft opened 3 weeks ago

gregli-msft commented 3 weeks ago

This code was meant to be temporary and should be removed.

        /// <summary>
        /// This is specific for Cards team and it is a temporary feature.
        /// It will be soon deleted.
        /// </summary>
        [Obsolete]
        internal static Features PowerFxV1AllowSetExpandedTypes
        {
            get 
            {
                var ret = PowerFxV1;

                ret.SkipExpandableSetSemantics = true;

                return ret;
            }
        }
anderson-joyle commented 3 weeks ago

Just for reference, this was originally included in https://github.com/microsoft/Power-Fx/pull/1765.