Skip to content

Commit

Permalink
fix: fix cases issues
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 4, 2022
1 parent 18e7d95 commit b782bf2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ class CSharpFullIdentListener(val fileName: String) : CSharpAstListener() {
codeDataStruct: CodeDataStruct
) {
val memberDeclaration = memberCtx!!.common_member_declaration() ?: return
val firstChild = memberDeclaration.getChild(0) ?: return

val firstChild = memberDeclaration.getChild(0)
var returnType = "";
when (firstChild::class.java.simpleName) {
"TerminalNodeImpl" -> {
Expand Down

0 comments on commit b782bf2

Please # to comment.