We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In proto3, field qualifiers have been removed. But the parser still requires them and fails to parse a valid proto3 definition.
Example:
syntax = "proto3"; message SearchRequest { string query = 1; int32 page_number = 2; int32 result_per_page = 3; }
proto_pas output:
proto_pas
Protobuf files to pascal source code compiller version 1.0 [2021/01/17] for x86_64 Copyright (c) 2018-2019 by Lagunov Aleksey Compiling m1.proto (1) TSyntax : Start (1) TSyntax : proto3 - done (1) : Change syntax to proto 3 (1) TProtoMessage : Start (4) TProtoMessage : SearchRequest - done Error: (9, 4) Expected : OPTIONAL, REQUIRED, REPEATED, RESERVED, ENUM, identificator (MESSAGE)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In proto3, field qualifiers have been removed. But the parser still requires them and fails to parse a valid proto3 definition.
Example:
proto_pas
output:The text was updated successfully, but these errors were encountered: