Example #1
0
 private boolean isThread() {
   return type.equals(Block.Type.THREAD);
 }
Example #2
0
 private boolean isProc() {
   return type.equals(Block.Type.PROC);
 }
Example #3
0
 private boolean isLambda() {
   return type.equals(Block.Type.LAMBDA);
 }
Example #4
0
 private boolean isNormal() {
   return type.equals(Block.Type.NORMAL);
 }