add stack roots scanning

This commit is contained in:
danyabeerzun 2018-11-21 14:23:35 +03:00
parent 98f9cc0254
commit 16d3f839ce
6 changed files with 1784 additions and 27 deletions

View file

@ -1,11 +1,22 @@
x := 0;
y := 0;
z := 0;
t := 0;
test ();
fun f () local b {
b := 7;
test ();
b := y;
test ();
b := 9;
test ();
return 0
}
--x := 0;
--y := 0;
--z := 0;
--t := 0;
--test ();
y := "abc";
test ();
t := [];
test ();
t := 0;
test ()
test ();
f ()