KnownKeys.cs 649 B

12345678910111213141516
  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 Constructor = "constructor";
  7. internal static readonly Key Default = "default";
  8. internal static readonly Key Done = "done";
  9. internal static readonly Key Eval = "eval";
  10. internal static readonly Key Length = "length";
  11. internal static readonly Key Next = "next";
  12. internal static readonly Key Prototype = "prototype";
  13. internal static readonly Key Undefined = "undefined";
  14. internal static readonly Key Value = "value";
  15. }