Skip to content

Commit 5cead9c

Browse files
committed
chore(version): bump version to 2.4.0 and skip option in Protobuf parser
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.
1 parent 96aecea commit 5cead9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ allprojects {
2727
apply(plugin = "java")
2828

2929
group = "com.phodal.chapi"
30-
version = "2.3.6"
30+
version = "2.4.0"
3131
description =
3232
"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."
3333

chapi-ast-protobuf/src/main/kotlin/chapi/ast/protobuf/ProtobufFullIdentListener.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class ProtobufFullIdentListener(var fileName: String) : Protobuf3BaseListener()
8585
}
8686

8787
is Protobuf3Parser.OptionStatementContext -> {
88-
88+
// skip
8989
}
9090

9191
is Protobuf3Parser.OneofContext -> {

0 commit comments

Comments
 (0)