Blame tests/test1Formatted_plain.expected

Packit Service def718
my_string=	
Packit Service def718
my_string.to_string()="\t"
Packit Service def718
my_string=\
Packit Service def718
my_string.to_string()="\\"
Packit Service def718
my_string=/
Packit Service def718
my_string.to_string()="\/"
Packit Service def718
my_string.to_string(NOSLASHESCAPE)="/"
Packit Service def718
my_string=/foo/bar/baz
Packit Service def718
my_string.to_string()="\/foo\/bar\/baz"
Packit Service def718
my_string.to_string(NOSLASHESCAPE)="/foo/bar/baz"
Packit Service def718
my_string=foo
Packit Service def718
my_string.to_string()="foo"
Packit Service def718
my_int=9
Packit Service def718
my_int.to_string()=9
Packit Service def718
my_array=
Packit Service def718
	[0]=1
Packit Service def718
	[1]=2
Packit Service def718
	[2]=3
Packit Service def718
	[3]=null
Packit Service def718
	[4]=5
Packit Service def718
my_array.to_string()=[1,2,3,null,5]
Packit Service def718
my_array=
Packit Service def718
	[0]=1
Packit Service def718
	[1]=2
Packit Service def718
	[2]=3
Packit Service def718
	[3]=4
Packit Service def718
	[4]=5
Packit Service def718
	[5]=null
Packit Service def718
	[6]=7
Packit Service def718
my_array.to_string()=[1,2,3,4,5,null,7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[2,3,4,5,null,7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[3,4,5,null,7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[4,5,null,7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[5,null,7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[null,7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[7]
Packit Service def718
after del_idx(0,1)=0, my_array.to_string()=[]
Packit Service def718
after del_idx(0,1)=-1, my_array.to_string()=[]
Packit Service def718
after del_idx(0,7)=0, my_array.to_string()=[]
Packit Service def718
after del_idx(0,8)=-1, my_array.to_string()=[1,2,3,4,5,null,7]
Packit Service def718
after del_idx(0,6)=0, my_array.to_string()=[7]
Packit Service def718
after adding more entries, my_array.to_string()=[7,"s1","s2","s3"]
Packit Service def718
my_array=
Packit Service def718
	[0]=3
Packit Service def718
	[1]=1
Packit Service def718
	[2]=2
Packit Service def718
	[3]=null
Packit Service def718
	[4]=0
Packit Service def718
my_array.to_string()=[3,1,2,null,0]
Packit Service def718
my_array=
Packit Service def718
	[0]=null
Packit Service def718
	[1]=0
Packit Service def718
	[2]=1
Packit Service def718
	[3]=2
Packit Service def718
	[4]=3
Packit Service def718
my_array.to_string()=[null,0,1,2,3]
Packit Service def718
baz_obj.to_string()="fark"
Packit Service def718
my_object=
Packit Service def718
	abc: 12
Packit Service def718
	foo: "bar"
Packit Service def718
	bool0: false
Packit Service def718
	bool1: true
Packit Service def718
my_object.to_string()={"abc":12,"foo":"bar","bool0":false,"bool1":true}