chore: mark enums in value type as experimental

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
pull/49570/head
Daniel Kesselberg 2024-12-02 14:29:43 +07:00
parent dd3fa88b36
commit f2d0f79710
No known key found for this signature in database
GPG Key ID: 4A81C29F63464E8F
1 changed files with 24 additions and 6 deletions

@ -18,17 +18,35 @@ use UnhandledMatchError;
* @since 31.0.0
*/
enum ValueType: int {
/** @since 31.0.0 */
/**
* @experimental 31.0.0
* @since 31.0.0
*/
case MIXED = 0;
/** @since 31.0.0 */
/**
* @experimental 31.0.0
* @since 31.0.0
*/
case STRING = 1;
/** @since 31.0.0 */
/**
* @experimental 31.0.0
* @since 31.0.0
*/
case INT = 2;
/** @since 31.0.0 */
/**
* @experimental 31.0.0
* @since 31.0.0
*/
case FLOAT = 3;
/** @since 31.0.0 */
/**
* @experimental 31.0.0
* @since 31.0.0
*/
case BOOL = 4;
/** @since 31.0.0 */
/**
* @experimental 31.0.0
* @since 31.0.0
*/
case ARRAY = 5;
/**