Merge variable declaration and assignment

**Before:**

```
var x uint
x = 1
```

**After:**

```
var x uint = 1
```
