本文整理汇总了C#中Irony.Interpreter.ScriptThread.GetStackTrace方法的典型用法代码示例。如果您正苦于以下问题:C# ScriptThread.GetStackTrace方法的具体用法?C# ScriptThread.GetStackTrace怎么用?C# ScriptThread.GetStackTrace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Irony.Interpreter.ScriptThread
的用法示例。
在下文中一共展示了ScriptThread.GetStackTrace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EvaluateParsedScript
//Actual implementation
private object EvaluateParsedScript() {
LastScript.Tag = DataMap;
var root = LastScript.Root.AstNode as AstNode;
root.DependentScopeInfo = MainScope.Info;
Status = AppStatus.Evaluating;
ScriptThread thread = null;
try {
thread = new ScriptThread(this);
var result = root.Evaluate(thread);
if (result != null)
thread.App.WriteLine(result.ToString());
Status = AppStatus.Ready;
return result;
} catch (ScriptException se) {
Status = AppStatus.RuntimeError;
se.Location = thread.CurrentNode.Location;
se.ScriptStackTrace = thread.GetStackTrace();
LastException = se;
if (RethrowExceptions)
throw;
return null;
} catch (Exception ex) {
Status = AppStatus.RuntimeError;
var se = new ScriptException(ex.Message, ex, thread.CurrentNode.Location, thread.GetStackTrace());
LastException = se;
if (RethrowExceptions)
throw se;
return null;
}//catch
}