Skip to content

Commit 7c1892f

Browse files
authored
add continue instruction (#3118)
1 parent f0c80fa commit 7c1892f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/features/cseMachine/CseMachineUtils.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -817,6 +817,15 @@ export function getControlItemComponent(
817817
unhighlightOnHover,
818818
topItem
819819
);
820+
case InstrType.CONTINUE:
821+
return new ControlItemComponent(
822+
'continue',
823+
'Control items until continue marker will be skipped',
824+
stackHeight,
825+
highlightOnHover,
826+
unhighlightOnHover,
827+
topItem
828+
);
820829
case InstrType.CONTINUE_MARKER:
821830
return new ControlItemComponent(
822831
'cont mark',

0 commit comments

Comments
 (0)