-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New ast types for user defined, including state variable fixes for in…
…itial value
- Loading branch information
Showing
14 changed files
with
1,275 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
syntax = "proto3"; | ||
package unpack.v1.ast; | ||
option go_package = "github.com/unpackdev/protos/dist/go/ast;ast_pb"; | ||
|
||
import "ast/types.proto"; | ||
import "ast/src.proto"; | ||
import "ast/type_name.proto"; | ||
|
||
message UserDefinedValueTypeDefinition { | ||
int64 id = 1; | ||
unpack.v1.ast.NodeType node_type = 2; | ||
unpack.v1.ast.Src src = 3; | ||
bool is = 4; | ||
string type = 5; | ||
unpack.v1.ast.Src type_location = 6; | ||
string name = 7; | ||
unpack.v1.ast.Src name_location = 8; | ||
unpack.v1.ast.TypeName type_name = 9; | ||
int64 referenced_declaration = 10; | ||
unpack.v1.ast.TypeDescription type_description = 11; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.