From ba20360431842bed56109a34e36416a3de5bf905 Mon Sep 17 00:00:00 2001 From: Charlie Stanton Date: Sun, 5 Mar 2023 09:11:09 +0000 Subject: Changes the slot map so only runes can be used as slots --- subex/main.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'subex/main.go') diff --git a/subex/main.go b/subex/main.go index fd59047..fd0d356 100644 --- a/subex/main.go +++ b/subex/main.go @@ -23,18 +23,16 @@ func (replacement TransducerReplacementAtom) build(store Store) []walk.Atom { return []walk.Atom{replacement.atom} } -// TODO should be a single field called slot with a type of rune // A TransducerOutput which is a slot that is loaded from type TransducerReplacementLoad struct { - atom walk.Atom + slot rune } func (replacement TransducerReplacementLoad) build(store Store) []walk.Atom { - return store[replacement.atom] + return store[replacement.slot] } // Where slots are stored -// TODO should map from runes as only runes can be slots -type Store map[walk.Atom][]walk.Atom +type Store map[rune][]walk.Atom // Return a new store with all the data from this one func (store Store) clone() Store { newStore := make(Store) @@ -44,7 +42,7 @@ func (store Store) clone() Store { return newStore } // Return a copy of this store but with an additional slot set -func (store Store) withValue(key walk.Atom, value []walk.Atom) Store { +func (store Store) withValue(key rune, value []walk.Atom) Store { newStore := store.clone() newStore[key] = value return newStore -- cgit v1.2.3