define CATCH_ALL

This commit is contained in:
Volker Berlin 2022-06-12 21:23:19 +02:00
parent 4611474ec5
commit f5edb58911
No known key found for this signature in database
GPG Key ID: 988423EF815BE4CB

View File

@ -1,5 +1,5 @@
/*
* Copyright 2017 - 2021 Volker Berlin (i-net software)
* Copyright 2017 - 2022 Volker Berlin (i-net software)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -97,6 +97,10 @@ interface InstructionOpcodes {
/** locals with block scope, in order to handle reference types without default initialisation values */
static final int LET = 0x17;
static final int DELEGATE = 0x18;
static final int CATCH_ALL = 0x19;
static final int DROP = 0x1A;
/**