|
@@ -1,15 +1,11 @@
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
-
|
|
|
using Jint.Native;
|
|
|
using Jint.Parser.Ast;
|
|
|
|
|
|
namespace Jint.Runtime
|
|
|
{
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
public class RecursionDiscardedException : Exception
|
|
|
{
|
|
|
public string CallChain { get; private set; }
|
|
@@ -24,4 +20,4 @@ namespace Jint.Runtime
|
|
|
CallChain = string.Join("->", currentStack.Select(t => t.Item3).ToArray().Reverse());
|
|
|
}
|
|
|
}
|
|
|
-}
|
|
|
+}
|