Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.jetbrains.kotlin.multiplatform' version '1.3.72'
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
id 'com.github.johnrengelman.shadow' version '5.0.0'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ enum class BotCommand(
val addsTo = when(returnType) {
RETURNVAL_INT, RETURNVAL_BOOLEAN -> ADDS_TO_NORMAL_STACK
RETURNVAL_STRING -> ADDS_TO_STRING_STACK
RETURNVAL_VOID -> DONT_PUSHES_TO_STACK
RETURNVAL_VOID -> DOES_NOT_PUSH_TO_STACK
}

return FunctionNode(readableName, args, addsTo)
Expand Down
Loading