pushBool method

dynamic pushBool (bool b)

Implementation

pushBool(bool b) {
  pushNum(b ? OpCode.pusht : OpCode.pushf);
}