mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-28 17:48:47 +00:00
add stack roots scanning
This commit is contained in:
parent
98f9cc0254
commit
16d3f839ce
6 changed files with 1784 additions and 27 deletions
|
|
@ -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 ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue