This repository was archived by the owner on Nov 18, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +0
-46
lines changed Expand file tree Collapse file tree 2 files changed +0
-46
lines changed Original file line number Diff line number Diff line change @@ -73,10 +73,6 @@ You can move to the next 'hole' in the template by pressing 'tab'. We provide
73
73
the following snippets:
74
74
75
75
* ` for ` - a for loop
76
- * ` unimplemented `
77
- * ` unreachable `
78
- * ` print(ln) `
79
- * ` assert(_eq) `
80
76
* ` macro_rules ` - declare a macro
81
77
* ` if let Option ` - an ` if let ` statement for executing code only in the ` Some `
82
78
case.
Original file line number Diff line number Diff line change 15
15
],
16
16
"description" : " Insert for loop"
17
17
},
18
- "unimplemented" : {
19
- "prefix" : " unimplemented" ,
20
- "body" : [
21
- " unimplemented!()"
22
- ],
23
- "description" : " Insert unimplemented!"
24
- },
25
- "unreachable" : {
26
- "prefix" : " unreachable" ,
27
- "body" : [
28
- " unreachable!()"
29
- ],
30
- "description" : " Insert unreachable!"
31
- },
32
- "print" : {
33
- "prefix" : " print" ,
34
- "body" : [
35
- " print!(\" $1\" , $2)$0"
36
- ],
37
- "description" : " Insert print!"
38
- },
39
- "println" : {
40
- "prefix" : " println" ,
41
- "body" : [
42
- " println!(\" $1\" , $2)$0"
43
- ],
44
- "description" : " Insert println!"
45
- },
46
- "assert" : {
47
- "prefix" : " assert" ,
48
- "body" : [
49
- " assert!($1)$0"
50
- ],
51
- "description" : " Insert assert!"
52
- },
53
- "assert_eq" : {
54
- "prefix" : " assert_eq" ,
55
- "body" : [
56
- " assert_eq!($1, $2)$0"
57
- ],
58
- "description" : " Insert assert_eq!"
59
- },
60
18
"macro_rules" : {
61
19
"prefix" : " macro_rules" ,
62
20
"body" : [
You can’t perform that action at this time.
0 commit comments