123456789101112131415161718192021222324 |
- namespace Jint.Native.Object
- {
- internal enum ObjectClass : byte
- {
- Arguments,
- Array,
- Boolean,
- Date,
- Error,
- Function,
- Iterator,
- JSON,
- Math,
- Number,
- Object,
- Promise,
- Proxy,
- Reflect,
- RegExp,
- String,
- Symbol,
- TypeReference
- }
- }
|