mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-22 11:16:12 +10:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
issue_267: {
|
|
options = { comparisons: true };
|
|
input: {
|
|
x = a % b / b * c * 2;
|
|
x = a % b * 2
|
|
}
|
|
expect: {
|
|
x = a % b / b * c * 2;
|
|
x = a % b * 2;
|
|
}
|
|
}
|