File tree Expand file tree Collapse file tree 2 files changed +32
-31
lines changed
Expand file tree Collapse file tree 2 files changed +32
-31
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ import { SwitchContext } from './classes/SwitchContext'
2+ import { SwitchManager } from './classes/SwitchManager'
3+
4+
5+ namespace switchcase {
6+
7+ /**
8+ * Case Block Container
9+ */
10+ //% block="case $match"
11+ //% blockId=switchcase_case_block
12+ //% group="Control"
13+ //% weight=90
14+ //% draggableParameters
15+ //% draggableStatement=true
16+ export function caseBlock ( match : any ) : void {
17+ //Placeholder for CodeGen
18+ }
19+
20+ /**
21+ * Default-Case Block Container
22+ */
23+ //% block="default case"
24+ //% blockId=switchcase_default_case_block
25+ //% group="Control"
26+ //% weight=80
27+ //% draggableStatement=true
28+ export function defaultCaseBlock ( ) : void {
29+ //Placeholder for CodeGen
30+ }
31+
32+ }
You can’t perform that action at this time.
0 commit comments