Skip to content

Commit f84c162

Browse files
committed
Prefix and suffix unary kinds
1 parent 47b0572 commit f84c162

File tree

6 files changed

+75
-74
lines changed

6 files changed

+75
-74
lines changed

ast/types.proto

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ enum NodeType {
107107
BIT_OR_OPERATION = 101;
108108
BIT_XOR_OPERATION = 102;
109109
SHIFT_OPERATION = 103;
110-
UNARY_PREFIX = 104;
111-
UNARY_SUFFIX = 105;
110+
KIND_UNARY_PREFIX = 104;
111+
KIND_UNARY_SUFFIX = 105;
112112
}
113113

114114
enum Mutability {

dist/docs/docs.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12327,12 +12327,12 @@
1232712327
"description": ""
1232812328
},
1232912329
{
12330-
"name": "UNARY_PREFIX",
12330+
"name": "KIND_UNARY_PREFIX",
1233112331
"number": "104",
1233212332
"description": ""
1233312333
},
1233412334
{
12335-
"name": "UNARY_SUFFIX",
12335+
"name": "KIND_UNARY_SUFFIX",
1233612336
"number": "105",
1233712337
"description": ""
1233812338
}

dist/go/ast/types.pb.go

+67-66
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/ast/types_pb.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ export enum NodeType {
107107
BIT_OR_OPERATION = 101,
108108
BIT_XOR_OPERATION = 102,
109109
SHIFT_OPERATION = 103,
110-
UNARY_PREFIX = 104,
111-
UNARY_SUFFIX = 105,
110+
KIND_UNARY_PREFIX = 104,
111+
KIND_UNARY_SUFFIX = 105,
112112
}
113113
export enum Mutability {
114114
M_DEFAULT = 0,

dist/js/ast/types_pb.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ proto.unpack.v1.ast.NodeType = {
125125
BIT_OR_OPERATION: 101,
126126
BIT_XOR_OPERATION: 102,
127127
SHIFT_OPERATION: 103,
128-
UNARY_PREFIX: 104,
129-
UNARY_SUFFIX: 105
128+
KIND_UNARY_PREFIX: 104,
129+
KIND_UNARY_SUFFIX: 105
130130
};
131131

132132
/**

dist/protosets/unpack.protoset

10 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)