123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- module.exports = {
- '#FakeMath.add': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.div': {
- throwsExceptions: true,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.mul': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.sub': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.mod': {
- throwsExceptions: true,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.bitor': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.bitand': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.bitxor': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.not': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.lshift': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
- '#FakeMath.rshift': {
- throwsExceptions: false,
- canReturn: ['number', 'NaN', 'Infinity'],
- synchronous: true,
- },
-
-
- }
|