I adjusted it a bit, here it is:

Code:
alias testingif {
  echo -a -
  var %a 50000,%t $ticks
  while (%a) {
    dec %a
    if (1 == 1) && (1 == 1) noop
  }
  echo -a (1 == 1) && (1 == 1) command no bracket in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if 1 == 1 && 1 == 1 noop 
  }
  echo -a 1 == 1 && 1 == 1 command no bracket in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if (1 == 1) && (1 == 1) noop
  }
  echo -a (1 == 1) && (1 == 1) command no bracket in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if (1) && (1) { noop }
  }
  echo -a (1) && (1) $chr(123) commands $chr(125) in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if (1) && (1) noop
  }
  echo -a (1) && (1) commands in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if (1 && 1 || 2 == 3) { noop }
  }
  echo -a (1 && 1 || 2 == 3) $chr(123) commands $chr(125) in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if 1 == 1 && 1 == 1 { noop }
  }
  echo -a 1 == 1 && 1 == 1 $chr(123) commands $chr(125) in $calc($ticks - %t)

  %a = 50000
  %t = $ticks
  while (%a) {
    dec %a
    if (1 == 1 && 1 == 1) { noop }
  }
  echo -a (1 == 1 && 1 == 1) $chr(123) commands $chr(125) in $calc($ticks - %t)
  echo -a -

}