I''m working on a project where I would like to host the IronRuby console, and I''m getting some stack overflow exceptions. I''ve met the end of my own knowledge, so I''m wondering if there is more information available anywhere about doing something like this? I was just modifying my copy of the Ruby.Console project in the IronRuby source, but I would really like to break this into a separate project. I started with a blank console app, and straight code copy over, and it builds, and even starts, but anything typed into the console causes the exception. I thought it might have been because I had targeted the wrong .Net version, but I fixed that. Any ideas? -Josh
Can you provide more details? Where did it stack overflow? Tomas -----Original Message----- From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Josh Charles Sent: Saturday, August 09, 2008 12:09 PM To: ironruby-core at rubyforge.org Subject: [Ironruby-core] Information on Hosting Ruby.Console? I''m working on a project where I would like to host the IronRuby console, and I''m getting some stack overflow exceptions. I''ve met the end of my own knowledge, so I''m wondering if there is more information available anywhere about doing something like this? I was just modifying my copy of the Ruby.Console project in the IronRuby source, but I would really like to break this into a separate project. I started with a blank console app, and straight code copy over, and it builds, and even starts, but anything typed into the console causes the exception. I thought it might have been because I had targeted the wrong .Net version, but I fixed that. Any ideas? -Josh _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core
Tomas, Thanks for your reply. Information inline. On Sat, Aug 9, 2008 at 3:37 PM, Tomas Matousek <Tomas.Matousek at microsoft.com> wrote:> Can you provide more details? Where did it stack overflow?The exact exception is: "An unhandled exception of type ''System.StackOverflowException'' occurred in mscorlib.dll" The debugger points to line line 53 in matchmaker.cs: if (method != null) { -this line--> method = method.MakeGenericMethod(args); return (T)(object)Delegate.CreateDelegate(target, this, method); } The specific message is: "Cannot evaluate expression because the current thread is in a stack overflow state." I thought it may have been a permissions issue, because the only way I could get IronRuby to compile was by running as Administrator, but this did not fix the problem either.
Could you sent full stack trace and the command you are executing on the command line? Tomas -----Original Message----- From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Josh Charles Sent: Monday, August 11, 2008 7:19 AM To: ironruby-core at rubyforge.org Subject: Re: [Ironruby-core] Information on Hosting Ruby.Console? Tomas, Thanks for your reply. Information inline. On Sat, Aug 9, 2008 at 3:37 PM, Tomas Matousek <Tomas.Matousek at microsoft.com> wrote:> Can you provide more details? Where did it stack overflow?The exact exception is: "An unhandled exception of type ''System.StackOverflowException'' occurred in mscorlib.dll" The debugger points to line line 53 in matchmaker.cs: if (method != null) { -this line--> method = method.MakeGenericMethod(args); return (T)(object)Delegate.CreateDelegate(target, this, method); } The specific message is: "Cannot evaluate expression because the current thread is in a stack overflow state." I thought it may have been a permissions issue, because the only way I could get IronRuby to compile was by running as Administrator, but this did not fix the problem either. _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core
No problem. I''ve also zipped my project up and have uploaded it to my website: http://joshuamcharles.com/IronConsole.zip Visual Studio has been acting very strange with this entire project. The line I keep typing is: $hello = "World" Here is the call stack: Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# On Mon, Aug 11, 2008 at 11:31 AM, Tomas Matousek <Tomas.Matousek at microsoft.com> wrote:> Could you sent full stack trace and the command you are executing on the command line? > > Tomas > > -----Original Message----- > From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Josh Charles > Sent: Monday, August 11, 2008 7:19 AM > To: ironruby-core at rubyforge.org > Subject: Re: [Ironruby-core] Information on Hosting Ruby.Console? > > Tomas, > > Thanks for your reply. Information inline. > > On Sat, Aug 9, 2008 at 3:37 PM, Tomas Matousek > <Tomas.Matousek at microsoft.com> wrote: >> Can you provide more details? Where did it stack overflow? > > The exact exception is: > > "An unhandled exception of type ''System.StackOverflowException'' > occurred in mscorlib.dll" > > The debugger points to line line 53 in matchmaker.cs: > > if (method != null) { > -this line--> method = method.MakeGenericMethod(args); > return (T)(object)Delegate.CreateDelegate(target, > this, method); > } > > The specific message is: > > "Cannot evaluate expression because the current thread is in a stack > overflow state." > > I thought it may have been a permissions issue, because the only way I > could get IronRuby to compile was by running as Administrator, but > this did not fix the problem either. > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core >-- Josh Charles josh.charles at gmail.com 816.812.7158
Curt Hagenlocher
2008-Aug-12 17:14 UTC
[Ironruby-core] Information on Hosting Ruby.Console?
Including IronLibrary.Libraries.dll into your project will make it work. And you should probably file a bug on RubyForge -- we should give a more reasonable error message when this module is missing instead of overflowing the stack. -----Original Message----- From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Josh Charles Sent: Tuesday, August 12, 2008 5:56 AM To: ironruby-core at rubyforge.org Subject: Re: [Ironruby-core] Information on Hosting Ruby.Console? No problem. I''ve also zipped my project up and have uploaded it to my website: http://joshuamcharles.com/IronConsole.zip Visual Studio has been acting very strange with this entire project. The line I keep typing is: $hello = "World" Here is the call stack: Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# IronRuby.dll!Ruby.Builtins.RubySites.ToS(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object value = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 111 + 0x25 bytes C# IronRuby.dll!Ruby.Runtime.RubyExceptions.CreateMethodMissing(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object self = Cannot evaluate expression because the current thread is in a stack overflow state., System.Scripting.SymbolId name = {System.Scripting.SymbolId}) Line 145 + 0xb bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetInvokeMemberActionRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldInvokeMemberAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] argValues = {object[1]}) Line 122 + 0xe bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.SetRule(System.Scripting.Actions.RuleBuilder rule = {System.Scripting.Actions.RuleBuilder<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Actions.OldDynamicAction action {System.Scripting.Actions.OldInvokeMemberAction}, System.Scripting.Runtime.CodeContext callerContext {Ruby.Runtime.RubyTopLevelScope}, object[] args = {object[1]}) Line 88 + 0x11 bytes C# IronRuby.dll!Ruby.Runtime.Calls.RubyBinder.MakeRule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 66 + 0x11 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.ActionBinder.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(System.Scripting.Actions.OldDynamicAction action = {System.Scripting.Actions.OldInvokeMemberAction}, object[] args = {object[2]}) Line 44 + 0x50 bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.OldMemberAction.Bind<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>(object[] args = {object[2]}) Line 37 + 0x5b bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.CreateNewRule(System.Scripting.Actions.Rule<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>> originalMonomorphicRule = null, object[] args = {object[2]}) Line 316 + 0x5f bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>.UpdateAndExecute(object[] args = {object[2]}) Line 269 + 0xe bytes C# Microsoft.Scripting.Core.dll!System.Scripting.Actions.UpdateDelegates.Update2<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>,System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>(System.Scripting.Actions.CallSite site = {System.Scripting.Actions.CallSite<System.Scripting.Actions.DynamicSiteTarget<System.Scripting.Runtime.CodeContext,object,Ruby.Builtins.MutableString>>}, System.Scripting.Runtime.CodeContext arg0 {Ruby.Runtime.RubyTopLevelScope}, object arg1 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 34 + 0xd4 bytes C# Microsoft.Scripting.dll!Microsoft.Scripting.Actions.DynamicSite<object,Ruby.Builtins.MutableString>.Invoke(System.Scripting.Runtime.CodeContext context = {Ruby.Runtime.RubyTopLevelScope}, object arg0 = Cannot evaluate expression because the current thread is in a stack overflow state.) Line 87 + 0x27 bytes C# On Mon, Aug 11, 2008 at 11:31 AM, Tomas Matousek <Tomas.Matousek at microsoft.com> wrote:> Could you sent full stack trace and the command you are executing on the command line? > > Tomas > > -----Original Message----- > From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Josh Charles > Sent: Monday, August 11, 2008 7:19 AM > To: ironruby-core at rubyforge.org > Subject: Re: [Ironruby-core] Information on Hosting Ruby.Console? > > Tomas, > > Thanks for your reply. Information inline. > > On Sat, Aug 9, 2008 at 3:37 PM, Tomas Matousek > <Tomas.Matousek at microsoft.com> wrote: >> Can you provide more details? Where did it stack overflow? > > The exact exception is: > > "An unhandled exception of type ''System.StackOverflowException'' > occurred in mscorlib.dll" > > The debugger points to line line 53 in matchmaker.cs: > > if (method != null) { > -this line--> method = method.MakeGenericMethod(args); > return (T)(object)Delegate.CreateDelegate(target, > this, method); > } > > The specific message is: > > "Cannot evaluate expression because the current thread is in a stack > overflow state." > > I thought it may have been a permissions issue, because the only way I > could get IronRuby to compile was by running as Administrator, but > this did not fix the problem either. > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core > > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-core >-- Josh Charles josh.charles at gmail.com 816.812.7158 _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core
Curt, You rock my socks off. Why didn''t I catch that! Thanks for the tip, and I''ve entered the bug report at RubyForge. Josh On Tue, Aug 12, 2008 at 12:14 PM, Curt Hagenlocher <curth at microsoft.com> wrote:> Including IronLibrary.Libraries.dll into your project will make it work. And you should probably file a bug on RubyForge -- we should give a more reasonable error message when this module is missing instead of overflowing the stack.<snip>