13 lines
206 B
YAML
13 lines
206 B
YAML
id: safecell-write-inline
|
|
language: Rust
|
|
rule:
|
|
pattern: |
|
|
{
|
|
let mut $WRITE = $CELL.write();
|
|
$$$BODY
|
|
}
|
|
fix:
|
|
template: |
|
|
$CELL.write_inline(|$WRITE| {
|
|
$$$BODY
|
|
}); |