Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
rerfactor: remove symbol comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Jul 28, 2024
1 parent 078836f commit 768b0d5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ data class MemberTypeData(
var origin = buildString {
val isFunctionPtr = valType.name.contains("*)(") && valType.name.endsWith(")")
val infos = mutableListOf<String>()
if (vIndex != null) infos.add("vIndex: $vIndex")
if (symbol.isNotEmpty()) infos.add("symbol: $symbol")
appendIndented("// ${infos.joinToString(", ")}")
if (vIndex != null) appendIndented("// vIndex: $vIndex")
appendSpace(START_BLANK_SPACE)
if (isStaticGlobalVariable()) {
append("MCAPI ")
Expand Down

0 comments on commit 768b0d5

Please sign in to comment.