コード例 #1
0
ファイル: FixedRule.java プロジェクト: Jakz/esolang-framework
  public boolean applyOnCell(Cell cell) {
    if (condition.evaluate(cell)) {
      cell.nextType = type;
      return true;
    }

    return false;
  }
コード例 #2
0
ファイル: FixedRule.java プロジェクト: Jakz/esolang-framework
 public void solveReferences(Automaton a) {
   type = (Type) a.getType(type.name);
   condition.solveReferences(a);
 }