We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94a5730 + d58a98c commit e18e217Copy full SHA for e18e217
2 files changed
case.ts
caseblock.ts
@@ -0,0 +1,32 @@
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
26
+ //% weight=80
27
28
+ export function defaultCaseBlock(): void {
29
30
31
32
+}
0 commit comments