mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-14 13:23:53 +00:00
Estimated hours taken: 0.25 Branches: main java/runtime/PredFunc.java: New file. Needed as a result of Zoltan's recent typeclass_info-related changes.
20 lines
409 B
Java
20 lines
409 B
Java
//
|
|
// Copyright (C) 2004 The University of Melbourne.
|
|
// This file may only be copied under the terms of the GNU Library General
|
|
// Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
//
|
|
|
|
package mercury.runtime;
|
|
|
|
public class PredFunc {
|
|
|
|
public static final int MR_PRED = 0;
|
|
public static final int MR_FUNC = 1;
|
|
|
|
public int value;
|
|
|
|
public PredFunc(int arg) {
|
|
this.value = arg;
|
|
}
|
|
}
|