mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Rename RedundantAssignEliminator to UnusedAssignEliminator.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
{
|
||||
let r
|
||||
r := 1
|
||||
function f(x, y) -> a, b {
|
||||
// Can be removed, is param
|
||||
x := 1
|
||||
y := 2
|
||||
// Cannot be removed, is return param
|
||||
a := 3
|
||||
b := 4
|
||||
}
|
||||
r := 2
|
||||
}
|
||||
// ----
|
||||
// step: redundantAssignEliminator
|
||||
//
|
||||
// {
|
||||
// let r
|
||||
// function f(x, y) -> a, b
|
||||
// {
|
||||
// a := 3
|
||||
// b := 4
|
||||
// }
|
||||
// }
|
||||
Reference in New Issue
Block a user