blob: 0ec84408c9f969062ea78b1624807a56f7f48483 [file] [log] [blame]
// Expectation for test:
// // Method to test: function(foo)
// import 'package:expect/expect.dart';
//
// @NoInline() foo(a) => a % 13;
//
// main() {
// print(foo(5));
// print(foo(-100));
// }
function(a) {
return C.JSInt_methods.$mod(a, 13);
}