diff options
| author | Rich Hickey <richhickey@gmail.com> | 2006-04-21 20:21:59 +0000 |
|---|---|---|
| committer | Rich Hickey <richhickey@gmail.com> | 2006-04-21 20:21:59 +0000 |
| commit | a42245c3e9c1cf2c2e54dc31c7bffd91ae32dac8 (patch) | |
| tree | 16e579a97f4a87a860782cf56c7e937bf2b2c931 /src/cli/runtime/AMap.cs | |
| parent | 165da010e2c81bab2128231384128b39b7c9a127 (diff) | |
revised symbol system
Diffstat (limited to 'src/cli/runtime/AMap.cs')
| -rw-r--r-- | src/cli/runtime/AMap.cs | 4 |
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; |
