projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a2ca7fe78321ce69b3ebab3ad6131496f180d42f
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
module.exports = function (t, a) {
4
a(t(), 0, "No arguments");
5
a(t(0, 0), 0, "Zeros");
6
a(t(2, 4), 8, "#1");
7
a(t(-1, 8), -8, "#2");
8
a(t(0xfffffffe, 5), -10, "#3");
9
};