KnownKeys.cs 537 B

1234567891011121314
  1. namespace Jint.Runtime;
  2. internal static class KnownKeys
  3. {
  4. internal static readonly Key Arguments = "arguments";
  5. internal static readonly Key Caller = "caller";
  6. internal static readonly Key Eval = "eval";
  7. internal static readonly Key Length = "length";
  8. internal static readonly Key Done = "done";
  9. internal static readonly Key Value = "value";
  10. internal static readonly Key Undefined = "undefined";
  11. internal static readonly Key Constructor = "constructor";
  12. internal static readonly Key Next = "next";
  13. }