summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-06-11 17:05:43 +0000
committerRich Hickey <richhickey@gmail.com>2006-06-11 17:05:43 +0000
commit8671005cec92c0ad806828eb4df605b17aadae4c (patch)
tree9b96866fc8c617b5b91c7e0365d19e155dad799d /src
parent63b40e8e3713954a366563594e548c9528008f45 (diff)
renamed package to clojure.lang
Diffstat (limited to 'src')
-rw-r--r--src/cli/runtime/AFn.cs2
-rw-r--r--src/cli/runtime/AGenerator.cs2
-rw-r--r--src/cli/runtime/Accessor.cs2
-rw-r--r--src/cli/runtime/BigNum.cs2
-rw-r--r--src/cli/runtime/Binding.cs2
-rw-r--r--src/cli/runtime/Box.cs2
-rw-r--r--src/cli/runtime/Cons.cs2
-rw-r--r--src/cli/runtime/DoubleNum.cs2
-rw-r--r--src/cli/runtime/EnumeratorIter.cs2
-rw-r--r--src/cli/runtime/FixNum.cs2
-rw-r--r--src/cli/runtime/FloatNum.cs2
-rw-r--r--src/cli/runtime/FnSeq.cs2
-rw-r--r--src/cli/runtime/IFn.cs2
-rw-r--r--src/cli/runtime/IMapEntry.cs2
-rw-r--r--src/cli/runtime/IObj.cs2
-rw-r--r--src/cli/runtime/IPersistentMap.cs2
-rw-r--r--src/cli/runtime/ISeq.cs2
-rw-r--r--src/cli/runtime/ISequential.cs2
-rw-r--r--src/cli/runtime/Indexer.cs2
-rw-r--r--src/cli/runtime/IntegerNum.cs2
-rw-r--r--src/cli/runtime/Iter.cs2
-rw-r--r--src/cli/runtime/Keyword.cs2
-rw-r--r--src/cli/runtime/LineNumberingTextReader.cs2
-rw-r--r--src/cli/runtime/Namespace.cs2
-rw-r--r--src/cli/runtime/Num.cs2
-rw-r--r--src/cli/runtime/Obj.cs2
-rw-r--r--src/cli/runtime/PersistentArray.cs2
-rw-r--r--src/cli/runtime/PersistentArrayIdentityMap.cs2
-rw-r--r--src/cli/runtime/PersistentArrayMap.cs2
-rw-r--r--src/cli/runtime/PersistentHashtableIdentityMap.cs2
-rw-r--r--src/cli/runtime/PersistentHashtableMap.cs2
-rw-r--r--src/cli/runtime/PersistentHybridIdentityMap.cs2
-rw-r--r--src/cli/runtime/PersistentHybridMap.cs2
-rw-r--r--src/cli/runtime/PersistentListIdentityMap.cs2
-rw-r--r--src/cli/runtime/PersistentListMap.cs2
-rw-r--r--src/cli/runtime/PersistentTree.cs2
-rw-r--r--src/cli/runtime/RT.cs2
-rw-r--r--src/cli/runtime/RatioNum.cs2
-rw-r--r--src/cli/runtime/RationalNum.cs2
-rw-r--r--src/cli/runtime/RealNum.cs2
-rw-r--r--src/cli/runtime/Reflector.cs2
-rw-r--r--src/cli/runtime/RestFn0.cs2
-rw-r--r--src/cli/runtime/RestFn1.cs2
-rw-r--r--src/cli/runtime/RestFn2.cs2
-rw-r--r--src/cli/runtime/RestFn3.cs2
-rw-r--r--src/cli/runtime/RestFn4.cs2
-rw-r--r--src/cli/runtime/RestFn5.cs2
-rw-r--r--src/cli/runtime/Symbol.cs2
-rw-r--r--src/cli/runtime/TObj.cs2
-rw-r--r--src/cli/runtime/TRef.cs2
-rw-r--r--src/cli/runtime/TVal.cs2
-rw-r--r--src/cli/runtime/ThreadLocalData.cs2
-rw-r--r--src/cli/runtime/Transaction.cs2
-rw-r--r--src/cli/runtime/Var.cs2
54 files changed, 54 insertions, 54 deletions
diff --git a/src/cli/runtime/AFn.cs b/src/cli/runtime/AFn.cs
index 14ffc43d..7003b3e8 100644
--- a/src/cli/runtime/AFn.cs
+++ b/src/cli/runtime/AFn.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class AFn : Obj , IFn
diff --git a/src/cli/runtime/AGenerator.cs b/src/cli/runtime/AGenerator.cs
index 25532942..9a1c8429 100644
--- a/src/cli/runtime/AGenerator.cs
+++ b/src/cli/runtime/AGenerator.cs
@@ -11,7 +11,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class AGenerator : Iter{
diff --git a/src/cli/runtime/Accessor.cs b/src/cli/runtime/Accessor.cs
index 295a452c..618e8ef1 100644
--- a/src/cli/runtime/Accessor.cs
+++ b/src/cli/runtime/Accessor.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Accessor :Symbol, IFn
{
diff --git a/src/cli/runtime/BigNum.cs b/src/cli/runtime/BigNum.cs
index 805404f7..9bde7116 100644
--- a/src/cli/runtime/BigNum.cs
+++ b/src/cli/runtime/BigNum.cs
@@ -13,7 +13,7 @@
using System;
using java.math;
-namespace org.clojure.runtime
+namespace clojure.lang
{
diff --git a/src/cli/runtime/Binding.cs b/src/cli/runtime/Binding.cs
index 51c1313f..c8c8d6f3 100644
--- a/src/cli/runtime/Binding.cs
+++ b/src/cli/runtime/Binding.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Binding {
public Object val;
diff --git a/src/cli/runtime/Box.cs b/src/cli/runtime/Box.cs
index 37915bd9..d751786d 100644
--- a/src/cli/runtime/Box.cs
+++ b/src/cli/runtime/Box.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Box
diff --git a/src/cli/runtime/Cons.cs b/src/cli/runtime/Cons.cs
index 9b1030fa..935f3daa 100644
--- a/src/cli/runtime/Cons.cs
+++ b/src/cli/runtime/Cons.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Cons : ISeq, ISequential
diff --git a/src/cli/runtime/DoubleNum.cs b/src/cli/runtime/DoubleNum.cs
index b88ca151..ef9f3f75 100644
--- a/src/cli/runtime/DoubleNum.cs
+++ b/src/cli/runtime/DoubleNum.cs
@@ -13,7 +13,7 @@
using System;
using java.math;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class DoubleNum : FloatNum{
diff --git a/src/cli/runtime/EnumeratorIter.cs b/src/cli/runtime/EnumeratorIter.cs
index ccceda93..2fb66c11 100644
--- a/src/cli/runtime/EnumeratorIter.cs
+++ b/src/cli/runtime/EnumeratorIter.cs
@@ -12,7 +12,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
internal class EnumeratorIter:Iter
{
diff --git a/src/cli/runtime/FixNum.cs b/src/cli/runtime/FixNum.cs
index f4a8d52d..6b0d6759 100644
--- a/src/cli/runtime/FixNum.cs
+++ b/src/cli/runtime/FixNum.cs
@@ -13,7 +13,7 @@
using System;
using java.math;
-namespace org.clojure.runtime
+namespace clojure.lang
{
diff --git a/src/cli/runtime/FloatNum.cs b/src/cli/runtime/FloatNum.cs
index 3031e4f6..6b709c2b 100644
--- a/src/cli/runtime/FloatNum.cs
+++ b/src/cli/runtime/FloatNum.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class FloatNum : RealNum {
diff --git a/src/cli/runtime/FnSeq.cs b/src/cli/runtime/FnSeq.cs
index f2867820..6225cc05 100644
--- a/src/cli/runtime/FnSeq.cs
+++ b/src/cli/runtime/FnSeq.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class FnSeq : ISeq{
diff --git a/src/cli/runtime/IFn.cs b/src/cli/runtime/IFn.cs
index 2b9f6447..bc6c60e6 100644
--- a/src/cli/runtime/IFn.cs
+++ b/src/cli/runtime/IFn.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public interface IFn{
diff --git a/src/cli/runtime/IMapEntry.cs b/src/cli/runtime/IMapEntry.cs
index dd7a4005..4a173c81 100644
--- a/src/cli/runtime/IMapEntry.cs
+++ b/src/cli/runtime/IMapEntry.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
diff --git a/src/cli/runtime/IObj.cs b/src/cli/runtime/IObj.cs
index 9e43174f..c94ef5dc 100644
--- a/src/cli/runtime/IObj.cs
+++ b/src/cli/runtime/IObj.cs
@@ -9,7 +9,7 @@
**/
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
interface IObj
{
diff --git a/src/cli/runtime/IPersistentMap.cs b/src/cli/runtime/IPersistentMap.cs
index aa072c56..14c913c4 100644
--- a/src/cli/runtime/IPersistentMap.cs
+++ b/src/cli/runtime/IPersistentMap.cs
@@ -11,7 +11,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public interface IPersistentMap : IEnumerable, ISequential{
diff --git a/src/cli/runtime/ISeq.cs b/src/cli/runtime/ISeq.cs
index cd7d9134..fec4242a 100644
--- a/src/cli/runtime/ISeq.cs
+++ b/src/cli/runtime/ISeq.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public interface ISeq
{
diff --git a/src/cli/runtime/ISequential.cs b/src/cli/runtime/ISequential.cs
index 66d5023e..35edf9cf 100644
--- a/src/cli/runtime/ISequential.cs
+++ b/src/cli/runtime/ISequential.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public interface ISequential
diff --git a/src/cli/runtime/Indexer.cs b/src/cli/runtime/Indexer.cs
index bc792857..8b2cb535 100644
--- a/src/cli/runtime/Indexer.cs
+++ b/src/cli/runtime/Indexer.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Indexer :AFn
{
diff --git a/src/cli/runtime/IntegerNum.cs b/src/cli/runtime/IntegerNum.cs
index 7e24b1e6..5e58a514 100644
--- a/src/cli/runtime/IntegerNum.cs
+++ b/src/cli/runtime/IntegerNum.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class IntegerNum : RationalNum {
diff --git a/src/cli/runtime/Iter.cs b/src/cli/runtime/Iter.cs
index 24c599d4..605d2d61 100644
--- a/src/cli/runtime/Iter.cs
+++ b/src/cli/runtime/Iter.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public interface Iter
{
diff --git a/src/cli/runtime/Keyword.cs b/src/cli/runtime/Keyword.cs
index ab5eb77c..8c4f645a 100644
--- a/src/cli/runtime/Keyword.cs
+++ b/src/cli/runtime/Keyword.cs
@@ -13,7 +13,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Keyword : Symbol, IFn{
diff --git a/src/cli/runtime/LineNumberingTextReader.cs b/src/cli/runtime/LineNumberingTextReader.cs
index 5238c6e8..7ccdc874 100644
--- a/src/cli/runtime/LineNumberingTextReader.cs
+++ b/src/cli/runtime/LineNumberingTextReader.cs
@@ -11,7 +11,7 @@
using System;
using System.IO;
-namespace org.clojure.runtime
+namespace clojure.lang
{
diff --git a/src/cli/runtime/Namespace.cs b/src/cli/runtime/Namespace.cs
index d4b15078..aae5ffc1 100644
--- a/src/cli/runtime/Namespace.cs
+++ b/src/cli/runtime/Namespace.cs
@@ -13,7 +13,7 @@
using System;
using System.Collections.Specialized;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Namespace
diff --git a/src/cli/runtime/Num.cs b/src/cli/runtime/Num.cs
index 8758b198..6058ab93 100644
--- a/src/cli/runtime/Num.cs
+++ b/src/cli/runtime/Num.cs
@@ -13,7 +13,7 @@
using System;
using java.math;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class Num : IComparable , IConvertible
diff --git a/src/cli/runtime/Obj.cs b/src/cli/runtime/Obj.cs
index 6848ee30..269a4156 100644
--- a/src/cli/runtime/Obj.cs
+++ b/src/cli/runtime/Obj.cs
@@ -13,7 +13,7 @@
using System;
using System.Collections.Specialized;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Obj : IObj
diff --git a/src/cli/runtime/PersistentArray.cs b/src/cli/runtime/PersistentArray.cs
index cec59dcc..6167b67e 100644
--- a/src/cli/runtime/PersistentArray.cs
+++ b/src/cli/runtime/PersistentArray.cs
@@ -14,7 +14,7 @@ using System;
using System.Threading;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
/**
* Note that instances of this class are constant values
diff --git a/src/cli/runtime/PersistentArrayIdentityMap.cs b/src/cli/runtime/PersistentArrayIdentityMap.cs
index 232a143a..78e3ec04 100644
--- a/src/cli/runtime/PersistentArrayIdentityMap.cs
+++ b/src/cli/runtime/PersistentArrayIdentityMap.cs
@@ -10,7 +10,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
/**
* ArrayMap using identity (==) comparison instead of equals
diff --git a/src/cli/runtime/PersistentArrayMap.cs b/src/cli/runtime/PersistentArrayMap.cs
index ebb217a4..7d789af5 100644
--- a/src/cli/runtime/PersistentArrayMap.cs
+++ b/src/cli/runtime/PersistentArrayMap.cs
@@ -11,7 +11,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
/**
diff --git a/src/cli/runtime/PersistentHashtableIdentityMap.cs b/src/cli/runtime/PersistentHashtableIdentityMap.cs
index 13880273..51078d0a 100644
--- a/src/cli/runtime/PersistentHashtableIdentityMap.cs
+++ b/src/cli/runtime/PersistentHashtableIdentityMap.cs
@@ -11,7 +11,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class PersistentHashtableIdentityMap : PersistentHashtableMap {
diff --git a/src/cli/runtime/PersistentHashtableMap.cs b/src/cli/runtime/PersistentHashtableMap.cs
index 66732b72..efe95d9e 100644
--- a/src/cli/runtime/PersistentHashtableMap.cs
+++ b/src/cli/runtime/PersistentHashtableMap.cs
@@ -12,7 +12,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
diff --git a/src/cli/runtime/PersistentHybridIdentityMap.cs b/src/cli/runtime/PersistentHybridIdentityMap.cs
index e1e420e8..2d2acdca 100644
--- a/src/cli/runtime/PersistentHybridIdentityMap.cs
+++ b/src/cli/runtime/PersistentHybridIdentityMap.cs
@@ -11,7 +11,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class PersistentHybridIdentityMap : PersistentHybridMap{
diff --git a/src/cli/runtime/PersistentHybridMap.cs b/src/cli/runtime/PersistentHybridMap.cs
index 67cbfb28..b8214d12 100644
--- a/src/cli/runtime/PersistentHybridMap.cs
+++ b/src/cli/runtime/PersistentHybridMap.cs
@@ -11,7 +11,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class PersistentHybridMap : IPersistentMap{
diff --git a/src/cli/runtime/PersistentListIdentityMap.cs b/src/cli/runtime/PersistentListIdentityMap.cs
index 330aeb5b..ce8242d8 100644
--- a/src/cli/runtime/PersistentListIdentityMap.cs
+++ b/src/cli/runtime/PersistentListIdentityMap.cs
@@ -13,7 +13,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
/**
* Implementation of persistent map on a linked list
diff --git a/src/cli/runtime/PersistentListMap.cs b/src/cli/runtime/PersistentListMap.cs
index 8f53d0db..dc432fcd 100644
--- a/src/cli/runtime/PersistentListMap.cs
+++ b/src/cli/runtime/PersistentListMap.cs
@@ -13,7 +13,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
/**
* Implementation of persistent map on a linked list
diff --git a/src/cli/runtime/PersistentTree.cs b/src/cli/runtime/PersistentTree.cs
index 2cb0a2b6..3b8d9bbc 100644
--- a/src/cli/runtime/PersistentTree.cs
+++ b/src/cli/runtime/PersistentTree.cs
@@ -14,7 +14,7 @@ using System;
using System.Collections;
using System.Collections.Specialized;
-namespace org.clojure.runtime
+namespace clojure.lang
{
/**
diff --git a/src/cli/runtime/RT.cs b/src/cli/runtime/RT.cs
index fcae27b6..b0d43116 100644
--- a/src/cli/runtime/RT.cs
+++ b/src/cli/runtime/RT.cs
@@ -14,7 +14,7 @@ using System;
using System.Collections;
using System.IO;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class RT
diff --git a/src/cli/runtime/RatioNum.cs b/src/cli/runtime/RatioNum.cs
index c09d6b13..7838b84c 100644
--- a/src/cli/runtime/RatioNum.cs
+++ b/src/cli/runtime/RatioNum.cs
@@ -13,7 +13,7 @@
using System;
using java.math;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class RatioNum : RationalNum{
diff --git a/src/cli/runtime/RationalNum.cs b/src/cli/runtime/RationalNum.cs
index 0dc810ae..fb5398d1 100644
--- a/src/cli/runtime/RationalNum.cs
+++ b/src/cli/runtime/RationalNum.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RationalNum : RealNum {
diff --git a/src/cli/runtime/RealNum.cs b/src/cli/runtime/RealNum.cs
index 2172199a..d29a404b 100644
--- a/src/cli/runtime/RealNum.cs
+++ b/src/cli/runtime/RealNum.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RealNum : Num {
diff --git a/src/cli/runtime/Reflector.cs b/src/cli/runtime/Reflector.cs
index a4088a31..af547877 100644
--- a/src/cli/runtime/Reflector.cs
+++ b/src/cli/runtime/Reflector.cs
@@ -12,7 +12,7 @@ using System;
using System.Reflection;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Reflector{
diff --git a/src/cli/runtime/RestFn0.cs b/src/cli/runtime/RestFn0.cs
index 0ce9072c..bdcc73f1 100644
--- a/src/cli/runtime/RestFn0.cs
+++ b/src/cli/runtime/RestFn0.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RestFn0 : AFn
diff --git a/src/cli/runtime/RestFn1.cs b/src/cli/runtime/RestFn1.cs
index d5ea2c57..b5d0d786 100644
--- a/src/cli/runtime/RestFn1.cs
+++ b/src/cli/runtime/RestFn1.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RestFn1 : AFn{
diff --git a/src/cli/runtime/RestFn2.cs b/src/cli/runtime/RestFn2.cs
index 1685f134..8ec0e07b 100644
--- a/src/cli/runtime/RestFn2.cs
+++ b/src/cli/runtime/RestFn2.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RestFn2 : AFn{
diff --git a/src/cli/runtime/RestFn3.cs b/src/cli/runtime/RestFn3.cs
index 303c7070..267a3e08 100644
--- a/src/cli/runtime/RestFn3.cs
+++ b/src/cli/runtime/RestFn3.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RestFn3 : AFn{
diff --git a/src/cli/runtime/RestFn4.cs b/src/cli/runtime/RestFn4.cs
index 05e6cc67..c3c73323 100644
--- a/src/cli/runtime/RestFn4.cs
+++ b/src/cli/runtime/RestFn4.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RestFn4 : AFn{
diff --git a/src/cli/runtime/RestFn5.cs b/src/cli/runtime/RestFn5.cs
index 337e7d1a..2ec32b64 100644
--- a/src/cli/runtime/RestFn5.cs
+++ b/src/cli/runtime/RestFn5.cs
@@ -12,7 +12,7 @@
using System;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public abstract class RestFn5 : AFn{
diff --git a/src/cli/runtime/Symbol.cs b/src/cli/runtime/Symbol.cs
index 9b976153..78580b94 100644
--- a/src/cli/runtime/Symbol.cs
+++ b/src/cli/runtime/Symbol.cs
@@ -13,7 +13,7 @@
using System;
using System.Collections;
-namespace org.clojure.runtime
+namespace clojure.lang
{
public class Symbol : Obj, IComparable{
diff --git a/src/cli/runtime/TObj.cs b/src/cl