mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-05-03 23:02:27 +00:00
vm: make PUSH0 emit Integer
This commit is contained in:
parent
820b050b18
commit
f4fa712440
7 changed files with 14 additions and 17 deletions
|
@ -26,7 +26,7 @@ var binaryExprTestCases = []testCase{
|
|||
return x
|
||||
}
|
||||
`,
|
||||
[]byte{},
|
||||
big.NewInt(0),
|
||||
},
|
||||
{
|
||||
"simple div",
|
||||
|
@ -97,7 +97,7 @@ var binaryExprTestCases = []testCase{
|
|||
return 0
|
||||
}
|
||||
`,
|
||||
[]byte{},
|
||||
big.NewInt(0),
|
||||
},
|
||||
{
|
||||
"compare equal strings with eql",
|
||||
|
@ -139,7 +139,7 @@ var binaryExprTestCases = []testCase{
|
|||
return 0
|
||||
}
|
||||
`,
|
||||
[]byte{},
|
||||
big.NewInt(0),
|
||||
},
|
||||
{
|
||||
"compare equal ints with eql",
|
||||
|
@ -167,7 +167,7 @@ var binaryExprTestCases = []testCase{
|
|||
return 0
|
||||
}
|
||||
`,
|
||||
[]byte{},
|
||||
big.NewInt(0),
|
||||
},
|
||||
{
|
||||
"compare not equal ints with eql",
|
||||
|
@ -181,7 +181,7 @@ var binaryExprTestCases = []testCase{
|
|||
return 0
|
||||
}
|
||||
`,
|
||||
[]byte{},
|
||||
big.NewInt(0),
|
||||
},
|
||||
{
|
||||
"compare not equal ints with neq",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue