ExecutionContext.cs 301 B

123456789101112
  1. using Jint.Native;
  2. namespace Jint.Runtime.Environments
  3. {
  4. public sealed class ExecutionContext
  5. {
  6. public LexicalEnvironment LexicalEnvironment { get; set; }
  7. public LexicalEnvironment VariableEnvironment { get; set; }
  8. public JsValue ThisBinding { get; set; }
  9. }
  10. }