Skip to content

Commit

Permalink
Shift operator
Browse files Browse the repository at this point in the history
  • Loading branch information
0x19 committed Oct 23, 2023
1 parent 1d7a45e commit ac182e0
Show file tree
Hide file tree
Showing 6 changed files with 84 additions and 58 deletions.
2 changes: 2 additions & 0 deletions ast/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ enum NodeType {
YUL_EXPRESSION = 123;
HEX_NUMBER = 124;
USER_DEFINED_VALUE_TYPE = 125;
SHIFT_LEFT_OPERATION = 126;
SHIFT_RIGHT_OPERATION = 127;
}

enum Mutability {
Expand Down
10 changes: 10 additions & 0 deletions dist/docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -12519,6 +12519,16 @@
"name": "USER_DEFINED_VALUE_TYPE",
"number": "125",
"description": ""
},
{
"name": "SHIFT_LEFT_OPERATION",
"number": "126",
"description": ""
},
{
"name": "SHIFT_RIGHT_OPERATION",
"number": "127",
"description": ""
}
]
},
Expand Down
124 changes: 67 additions & 57 deletions dist/go/ast/types.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/js/ast/types_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ export enum NodeType {
YUL_EXPRESSION = 123,
HEX_NUMBER = 124,
USER_DEFINED_VALUE_TYPE = 125,
SHIFT_LEFT_OPERATION = 126,
SHIFT_RIGHT_OPERATION = 127,
}
export enum Mutability {
M_DEFAULT = 0,
Expand Down
4 changes: 3 additions & 1 deletion dist/js/ast/types_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,9 @@ proto.unpack.v1.ast.NodeType = {
YUL_VARIABLE_DECLARATION: 122,
YUL_EXPRESSION: 123,
HEX_NUMBER: 124,
USER_DEFINED_VALUE_TYPE: 125
USER_DEFINED_VALUE_TYPE: 125,
SHIFT_LEFT_OPERATION: 126,
SHIFT_RIGHT_OPERATION: 127
};

/**
Expand Down
Binary file modified dist/protosets/unpack.protoset
Binary file not shown.

0 comments on commit ac182e0

Please sign in to comment.