mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
569 B
47 lines
569 B
export function whileIf(x) {
|
|
while (x)
|
|
if (false)
|
|
// replaced with {}
|
|
x = 0;
|
|
}
|
|
|
|
export function whileBlockIf(x) {
|
|
while (x) {
|
|
if (false)
|
|
// removed
|
|
x = 0;
|
|
}
|
|
}
|
|
|
|
export function ifWhile(x) {
|
|
if (x)
|
|
while (false)
|
|
// not optimized
|
|
x = 0;
|
|
}
|
|
|
|
export function ifFalseElse(x) {
|
|
if (false) {
|
|
// removed
|
|
} else {
|
|
// kept
|
|
}
|
|
}
|
|
|
|
export function elseIfFalse(x) {
|
|
if (x) {
|
|
// kept
|
|
} else if (false) {
|
|
// replaced with {}
|
|
}
|
|
}
|
|
|
|
export function elseIfFalseElse(x) {
|
|
if (x) {
|
|
// kept
|
|
} else if (false) {
|
|
// removed
|
|
} else {
|
|
// kept
|
|
}
|
|
}
|
|
|