1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 03:32:22 +00:00
ton/tolk-tester/tests/special-fun-names.tolk

25 lines
530 B
Text
Raw Normal View History

fun onInternalMessage() { return 0; }
fun onExternalMessage() { return -1; }
fun onRunTickTock() { return -2; }
fun onSplitPrepare() { return -3; }
fun onSplitInstall() { return -4; }
/**
@experimental_options remove-unused-functions
@testcase | 0 | | 0
@testcase | -1 | | -1
@testcase | -2 | | -2
@testcase | -3 | | -3
@testcase | -4 | | -4
@fif_codegen
"""
0 DECLMETHOD onInternalMessage
-1 DECLMETHOD onExternalMessage
-2 DECLMETHOD onRunTickTock
-3 DECLMETHOD onSplitPrepare
-4 DECLMETHOD onSplitInstall
"""
*/