Lines Matching defs:tx
10 function tx(fn, msg) {
543 tx(function () {new Decimal('12.345').pow(void 0)}, ".pow(void 0)");
544 tx(function () {new Decimal('12.345').pow(null)}, ".pow(null)");
545 tx(function () {new Decimal('12.345').pow(true)}, ".pow(true)");
546 tx(function () {new Decimal('12.345').pow(false)}, ".pow(false)");
547 tx(function () {new Decimal('12.345').pow([])}, ".pow([])");
548 tx(function () {new Decimal('12.345').pow({})}, ".pow({})");
549 tx(function () {new Decimal('12.345').pow('')}, ".pow('')");
550 tx(function () {new Decimal('12.345').pow(' ')}, ".pow(' ')");
551 tx(function () {new Decimal('12.345').pow('4e')}, ".pow('4e')");
552 tx(function () {new Decimal('12.345').pow('hello')}, ".pow('hello')");
553 tx(function () {new Decimal('12.345').pow('\t')}, ".pow('\t')");
554 tx(function () {new Decimal('12.345').pow(new Date)}, ".pow(new Date)");
555 tx(function () {new Decimal('12.345').pow(new RegExp)}, ".pow(new RegExp)");
556 tx(function () {new Decimal('12.345').pow(function (){})}, ".pow(function (){})");