diff options
Diffstat (limited to 'src/cli/runtime/AFn.cs')
-rw-r--r-- | src/cli/runtime/AFn.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cli/runtime/AFn.cs b/src/cli/runtime/AFn.cs index a14b7cb9..7ba53713 100644 --- a/src/cli/runtime/AFn.cs +++ b/src/cli/runtime/AFn.cs @@ -104,5 +104,10 @@ static public Object throwArity() { throw new Exception("Wrong number of args passed"); } + +public override Obj withMeta(IPersistentMap meta){
+ Obj ret = (Obj) MemberwiseClone();
+ ret._meta = meta;
+ return ret;
}
} }
\ No newline at end of file |