diff options
author | Rich Hickey <richhickey@gmail.com> | 2006-04-28 19:58:34 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2006-04-28 19:58:34 +0000 |
commit | be2107e6816da54623058243797e6c52566f8f05 (patch) | |
tree | 6ad8d7c24b35f6162a48654a4f10d8ab9653c6b4 /src | |
parent | 8bdcea4f32a37bb7bb48bbf0e3be09708648b88d (diff) |
made doInvoke public
Diffstat (limited to 'src')
-rw-r--r-- | src/cli/runtime/RestFn0.cs | 2 | ||||
-rw-r--r-- | src/cli/runtime/RestFn1.cs | 2 | ||||
-rw-r--r-- | src/cli/runtime/RestFn2.cs | 6 | ||||
-rw-r--r-- | src/cli/runtime/RestFn3.cs | 6 | ||||
-rw-r--r-- | src/cli/runtime/RestFn4.cs | 6 | ||||
-rw-r--r-- | src/cli/runtime/RestFn5.cs | 6 |
6 files changed, 14 insertions, 14 deletions
diff --git a/src/cli/runtime/RestFn0.cs b/src/cli/runtime/RestFn0.cs index fbd83e46..578a8c44 100644 --- a/src/cli/runtime/RestFn0.cs +++ b/src/cli/runtime/RestFn0.cs @@ -18,7 +18,7 @@ namespace org.clojure.runtime public abstract class RestFn0 : AFn
{ -protected abstract Object doInvoke(ThreadLocalData tld, Cons rest) /*throws Exception*/; +public abstract Object doInvoke(ThreadLocalData tld, Cons rest) /*throws Exception*/; override public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/ { diff --git a/src/cli/runtime/RestFn1.cs b/src/cli/runtime/RestFn1.cs index f59fa0d4..60f59747 100644 --- a/src/cli/runtime/RestFn1.cs +++ b/src/cli/runtime/RestFn1.cs @@ -17,7 +17,7 @@ namespace org.clojure.runtime public abstract class RestFn1 : AFn{ -protected abstract Object doInvoke(ThreadLocalData tld, Object arg1, Cons rest) /*throws Exception*/; +public abstract Object doInvoke(ThreadLocalData tld, Object arg1, Cons rest) /*throws Exception*/; override public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/ { diff --git a/src/cli/runtime/RestFn2.cs b/src/cli/runtime/RestFn2.cs index c0cdfe55..8cfe865e 100644 --- a/src/cli/runtime/RestFn2.cs +++ b/src/cli/runtime/RestFn2.cs @@ -15,9 +15,9 @@ using System; namespace org.clojure.runtime
{ -public abstract class RestFn2 : AFn{ - -protected abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Cons rest) /*throws Exception*/; +public abstract class RestFn2 : AFn{
+
+ public abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Cons rest) /*throws Exception*/; override public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/ { diff --git a/src/cli/runtime/RestFn3.cs b/src/cli/runtime/RestFn3.cs index 689ee565..91e5fac4 100644 --- a/src/cli/runtime/RestFn3.cs +++ b/src/cli/runtime/RestFn3.cs @@ -15,9 +15,9 @@ using System; namespace org.clojure.runtime
{ -public abstract class RestFn3 : AFn{ - -protected abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Cons rest) /*throws Exception*/; +public abstract class RestFn3 : AFn{
+
+ public abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Cons rest) /*throws Exception*/; override public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/ { diff --git a/src/cli/runtime/RestFn4.cs b/src/cli/runtime/RestFn4.cs index 9ab6aa93..de118d66 100644 --- a/src/cli/runtime/RestFn4.cs +++ b/src/cli/runtime/RestFn4.cs @@ -15,9 +15,9 @@ using System; namespace org.clojure.runtime
{ -public abstract class RestFn4 : AFn{ - -protected abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Cons rest) +public abstract class RestFn4 : AFn{
+
+ public abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Cons rest) /*throws Exception*/; override public Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/ diff --git a/src/cli/runtime/RestFn5.cs b/src/cli/runtime/RestFn5.cs index b50aeade..fb5eec1a 100644 --- a/src/cli/runtime/RestFn5.cs +++ b/src/cli/runtime/RestFn5.cs @@ -15,9 +15,9 @@ using System; namespace org.clojure.runtime
{ -public abstract class RestFn5 : AFn{ - -protected abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, +public abstract class RestFn5 : AFn{
+
+ public abstract Object doInvoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, Cons rest) /*throws Exception*/; |