diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-12-03 19:22:06 -0500 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-12-03 19:22:06 -0500 |
| commit | 28895cad07c7aec1b324a2c75e5da5ce728cad91 (patch) | |
| tree | 840b63e27d746a1079be29b0249e53321784f6a6 /dice/src/example | |
| parent | 32fec8be6a22789002cf92d4b86ed73c7ff8ab6b (diff) | |
Adapt to esodata changes
Diffstat (limited to 'dice/src/example')
| -rw-r--r-- | dice/src/example/java/bjc/dicelang/neodice/DieBoxCLI.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dice/src/example/java/bjc/dicelang/neodice/DieBoxCLI.java b/dice/src/example/java/bjc/dicelang/neodice/DieBoxCLI.java index bcd0e2f..f001d89 100644 --- a/dice/src/example/java/bjc/dicelang/neodice/DieBoxCLI.java +++ b/dice/src/example/java/bjc/dicelang/neodice/DieBoxCLI.java @@ -32,7 +32,7 @@ public class DieBoxCLI { /** * The current set of variable bindings */ - public IMap<String, StatementValue> bindings = new FunctionalMap<>(); + public MapEx<String, StatementValue> bindings = new FunctionalMap<>(); /** * The current source of random numbers. @@ -42,20 +42,20 @@ public class DieBoxCLI { /** * The built-in diebox commands. */ - public static final IMap<String, Command> builtInCommands; + public static final MapEx<String, Command> builtInCommands; /** * The built-in diebox literal formers. */ - public static final IMap<String, Command> builtInliterals; + public static final MapEx<String, Command> builtInliterals; /** * The current set of diebox commands. */ - public final IMap<String, Command> commands; + public final MapEx<String, Command> commands; /** * The current set of diebox literal-formers. */ - public final IMap<String, Command> literals; + public final MapEx<String, Command> literals; private int numStatements = 0; |
