Code Review: RandomRubyFixes03

tfpt review “/shelveset:RandomRubyFixes03;REDMOND\curth”

Comment :
Implement unpack directive L as equivalent to I on this platform
Fix stack overflow resulting from inspecting recursive objects
Fix instance variable operations to use consistent context/scope
variable type
Implement Proc.binding
Implement Thread.abort_on_exception, Thread.value. Flow exceptions
across Thread.join. (ThreadOps is now in need of some refactoring…)
Supply stack trace when there’s no handler

Missing overflow check in ThreadOps.cs:259

if (!self.Join((int)(timeout * 1000))) {

Other than that looks good.

Tomas