Skip to content

Commit

Permalink
define CATCH_ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
Horcrux7 committed Jun 12, 2022
1 parent 4611474 commit f5edb58
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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;

/**
Expand Down

0 comments on commit f5edb58

Please sign in to comment.