Skip to content

Commit 460044a

Browse files
vitstnneyrox
authored andcommitted
YQL-20086 ast fix
init commit_hash:d67bcebcfba4bf3afc216e61e970451609332a93
1 parent e44636c commit 460044a

File tree

1 file changed

+31
-29
lines changed

1 file changed

+31
-29
lines changed

yql/essentials/ast/yql_expr_types.h

Lines changed: 31 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,37 @@
44

55
namespace NYql {
66

7-
#define YQL_TYPE_ANN_KIND_MAP(xx) \
8-
xx(Unit, 1) \
9-
xx(Tuple, 2) \
10-
xx(Struct, 3) \
11-
xx(Item, 4) \
12-
xx(List, 5) \
13-
xx(Data, 6) \
14-
xx(World, 7) \
15-
xx(Optional, 8) \
16-
xx(Type, 9) \
17-
xx(Dict, 10) \
18-
xx(Void, 11) \
19-
xx(Callable, 12) \
20-
xx(Generic, 13) \
21-
xx(Resource, 14) \
22-
xx(Tagged, 15) \
23-
xx(Error, 16) \
24-
xx(Variant, 17) \
25-
xx(Stream, 18) \
26-
xx(Null, 19) \
27-
xx(Flow, 20) \
28-
xx(EmptyList, 21) \
29-
xx(EmptyDict, 22) \
30-
xx(Multi, 23) \
31-
xx(Pg, 24) \
32-
xx(Block, 25) \
33-
xx(Scalar, 26) \
34-
xx(Linear, 27) \
35-
xx(DynamicLinear, 28)
7+
// clang-format off
8+
#define YQL_TYPE_ANN_KIND_MAP(xx) \
9+
xx(Unit, 1) \
10+
xx(Tuple, 2) \
11+
xx(Struct, 3) \
12+
xx(Item, 4) \
13+
xx(List, 5) \
14+
xx(Data, 6) \
15+
xx(World, 7) \
16+
xx(Optional, 8) \
17+
xx(Type, 9) \
18+
xx(Dict, 10) \
19+
xx(Void, 11) \
20+
xx(Callable, 12) \
21+
xx(Generic, 13) \
22+
xx(Resource, 14) \
23+
xx(Tagged, 15) \
24+
xx(Error, 16) \
25+
xx(Variant, 17) \
26+
xx(Stream, 18) \
27+
xx(Null, 19) \
28+
xx(Flow, 20) \
29+
xx(EmptyList, 21) \
30+
xx(EmptyDict, 22) \
31+
xx(Multi, 23) \
32+
xx(Pg, 24) \
33+
xx(Block, 25) \
34+
xx(Scalar, 26) \
35+
xx(Linear, 27) \
36+
xx(DynamicLinear, 28)
37+
// clang-format on
3638

3739
enum class ETypeAnnotationKind: ui64 {
3840
YQL_TYPE_ANN_KIND_MAP(ENUM_VALUE_GEN)

0 commit comments

Comments
 (0)