Created
October 18, 2020 12:04
-
-
Save chaxiu/f724e797245db0885f3402dfac483455 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
when (continuation.label) { | |
0 -> { | |
... | |
} | |
1 -> { | |
... | |
// function name changed | |
// ↓ | |
suspendReturn = noSuspendFriendList(user, continuation) | |
// Determine if it suspended | |
if (suspendReturn == sFlag) { | |
return suspendReturn | |
} else { | |
result = suspendReturn | |
//go to next state | |
} | |
} | |
2 -> { | |
... | |
} | |
3 -> { | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment