stackitem: change ByteArray type to ByteString
Adjust only string representation. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
87119da2f7
commit
b53f0257f5
9 changed files with 36 additions and 36 deletions
|
@ -63,7 +63,7 @@ func unexportedMethod() int { return 1 }
|
|||
returnTypes := map[string]string{
|
||||
"MethodInt": "Integer",
|
||||
"MethodConcat": "String",
|
||||
"MethodString": "String", "MethodByteArray": "ByteArray",
|
||||
"MethodString": "String", "MethodByteArray": "ByteString",
|
||||
"MethodArray": "Array", "MethodStruct": "Struct",
|
||||
"Main": "Boolean",
|
||||
"unexportedMethod": "Integer",
|
||||
|
@ -272,7 +272,7 @@ func TestDebugInfo_MarshalJSON(t *testing.T) {
|
|||
{"param1", "Integer"},
|
||||
{"ok", "Boolean"},
|
||||
},
|
||||
ReturnType: "ByteArray",
|
||||
ReturnType: "ByteString",
|
||||
Variables: []string{},
|
||||
SeqPoints: []DebugSeqPoint{
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue