summaryrefslogtreecommitdiff
path: root/src/cli/runtime/Keyword.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-09 12:42:56 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-09 12:42:56 +0000
commit4f72b81de88948e149af93dd96406e4f519e15c6 (patch)
treee4bdf36a13c6fbd2bee70eceada82aef7bf9b945 /src/cli/runtime/Keyword.cs
parent3e18fcb60b00f869f74b112af5b5d90b9a9edba0 (diff)
added ISeq, ISequential, modified Cons
Diffstat (limited to 'src/cli/runtime/Keyword.cs')
-rw-r--r--src/cli/runtime/Keyword.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/Keyword.cs b/src/cli/runtime/Keyword.cs
index 903a8619..d4158540 100644
--- a/src/cli/runtime/Keyword.cs
+++ b/src/cli/runtime/Keyword.cs
@@ -42,13 +42,13 @@ public Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3,
return AFn.throwArity();
}
-public Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Cons args)
+public Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, ISeq args)
/*throws Exception*/
{
return AFn.throwArity();
}
-public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/ {
+public Object applyTo(ThreadLocalData tld, ISeq arglist) /*throws Exception*/ {
return AFn.applyToHelper(this, tld, arglist);
}
}