1234567891011121314151617 |
- using Esprima.Ast;
- namespace Jint.Runtime
- {
- /// <summary>
- /// Workaround for situation where engine is not easily accessible.
- /// </summary>
- internal sealed class TypeErrorException : JintException
- {
- public TypeErrorException(string? message, Node? node) : base(message)
- {
- Node = node;
- }
- public Node? Node { get; }
- }
- }
|