Skip to content

Commit

Permalink
chore(version): bump version to 2.4.0 and skip option in Protobuf parser
Browse files Browse the repository at this point in the history
This commit updates the project version to 2.4.0 and adds a skip comment for option statements in the Protobuf parser to ignore them during parsing.
  • Loading branch information
phodal committed Oct 25, 2024
1 parent 96aecea commit 5cead9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ allprojects {
apply(plugin = "java")

group = "com.phodal.chapi"
version = "2.3.6"
version = "2.4.0"
description =
"Chapi is A common hierarchical abstract parser && information convertor, streamlines code analysis by converting diverse language source code into a unified abstract model, simplifying cross-language development."

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class ProtobufFullIdentListener(var fileName: String) : Protobuf3BaseListener()
}

is Protobuf3Parser.OptionStatementContext -> {

// skip
}

is Protobuf3Parser.OneofContext -> {
Expand Down

0 comments on commit 5cead9c

Please sign in to comment.