From 33ec37b141e896b47ed642923fd33b0c658ae9fb Mon Sep 17 00:00:00 2001 From: Amir Rajan Date: Fri, 11 Sep 2020 02:02:01 -0500 Subject: synced samples --- samples/22_trace_debugging_classes/app/main.rb | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 samples/22_trace_debugging_classes/app/main.rb (limited to 'samples/22_trace_debugging_classes/app') diff --git a/samples/22_trace_debugging_classes/app/main.rb b/samples/22_trace_debugging_classes/app/main.rb deleted file mode 100644 index a6804ae..0000000 --- a/samples/22_trace_debugging_classes/app/main.rb +++ /dev/null @@ -1,22 +0,0 @@ -class Foobar - def initialize - trace! # Trace is added to the constructor. - end - - def clicky args - return unless args.inputs.mouse.click - try_rand rand - end - - def try_rand num - return if num < 0.9 - raise "Exception finally occurred. Take a look at logs/trace.txt #{num}." - end -end - -def tick args - args.labels << [640, 360, "Start clicking. Eventually an exception will be thrown. Then look at logs/trace.txt.", 0, 1] - args.state.foobar = Foobar.new if args.tick_count - return unless args.state.foobar - args.state.foobar.clicky args -end -- cgit v1.2.3