all: remove unneeded parentheses (#21921)
* remove uneeded convertion type * remove redundant type in composite literal * omit explicit type where implicit * remove unused redundant parenthesis * remove redundant import alias duktape
This commit is contained in:
@ -500,7 +500,7 @@ func DisabledTestEipExampleCases(t *testing.T) {
|
||||
|
||||
{
|
||||
code := []byte{
|
||||
byte(vm.PUSH9), 0x00, 0x00, 0x00, 0x00, 0x0, 0x00, 0x00, 0x00, (4 + 8),
|
||||
byte(vm.PUSH9), 0x00, 0x00, 0x00, 0x00, 0x0, 0x00, 0x00, 0x00, 4 + 8,
|
||||
byte(vm.JUMPSUB),
|
||||
byte(vm.STOP),
|
||||
byte(vm.BEGINSUB),
|
||||
@ -516,7 +516,7 @@ func DisabledTestEipExampleCases(t *testing.T) {
|
||||
// out the trace.
|
||||
{
|
||||
code := []byte{
|
||||
byte(vm.PUSH9), 0x01, 0x00, 0x00, 0x00, 0x0, 0x00, 0x00, 0x00, (4 + 8),
|
||||
byte(vm.PUSH9), 0x01, 0x00, 0x00, 0x00, 0x0, 0x00, 0x00, 0x00, 4 + 8,
|
||||
byte(vm.JUMPSUB),
|
||||
byte(vm.STOP),
|
||||
byte(vm.BEGINSUB),
|
||||
|
Reference in New Issue
Block a user