neo-go/pkg/vm/opcode
Evgenii Stratonikov 797324cb04 vm: support exceptions
Implement 3 new instructions: TRY,ENDTRY,ENDFINALLY.
1. TRY marks the start of the block where exceptions are catched.
    It has 2 arguments which are relative offsets of exception handler
    and the end of the whole try/catch construction.
2. ENDTRY denotes either end of try or catch block.
3. ENDFINALLY denotes end of finally block which is executed
    irregardless of whether an exception has occured.
2020-07-24 10:41:41 +03:00
..
from_string.go opcode: implement FromString() 2020-05-22 13:36:11 +03:00
opcode.go vm: support exceptions 2020-07-24 10:41:41 +03:00
opcode_string.go vm: support exceptions 2020-07-24 10:41:41 +03:00
opcode_test.go opcode: implement FromString() 2020-05-22 13:36:11 +03:00