summaryrefslogtreecommitdiff
path: root/src/cli/runtime/AMap.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/runtime/AMap.cs')
-rw-r--r--src/cli/runtime/AMap.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/AMap.cs b/src/cli/runtime/AMap.cs
index 76850122..9db0a525 100644
--- a/src/cli/runtime/AMap.cs
+++ b/src/cli/runtime/AMap.cs
@@ -22,7 +22,7 @@ public class AMap
HybridDictionary attrs;
public static int INITIAL_SIZE = 7;
-public Object put(Symbol key, Object val)
+public Object put(Indexer key, Object val)
{
if(attrs == null)
attrs = new HybridDictionary(INITIAL_SIZE);
@@ -30,7 +30,7 @@ public Object put(Symbol key, Object val)
return val;
}
-public Object get(Symbol key)
+public Object get(Indexer key)
{
if(attrs == null)
return null;