examples/crash.rb in
backtracer-0.0.2
vs examples/crash.rb in
backtracer-0.1.0
- old
+ new
@@ -1,11 +1,10 @@
def go2(a, b) raise end
-def go(a)
- b = 3
- go2(a, 55)
+def go(a);
+ go2(a, 55);
end go '3'