#4192 closed bug (wontfix)
Extend and RegExp
Reported by: | braillane | Owned by: | flesler |
---|---|---|---|
Priority: | major | Milestone: | 1.3.2 |
Component: | core | Version: | 1.3.1 |
Keywords: | Cc: | braillane | |
Blocked by: | Blocking: |
Description
I try to clone an object but there's a bug. In my Original object i have a RegExp. When i clone this object, my RegExp is transformed into a ampty object... My RegExp become unusable... this is a code showing the problem :
defaultopt = { text:"blabla",regexp : new RegExp("[c]")}; opt = {regexp : new RegExp("[d]")}; var target; jQuery.extend(true,target,defaultopt,opt);
Change History (5)
comment:1 Changed 14 years ago by
Cc: | braillane added |
---|---|
Component: | unfilled → core |
Milestone: | 1.3.1 → 1.3.2 |
Owner: | set to flesler |
Status: | new → assigned |
comment:2 Changed 14 years ago by
Related:
http://groups.google.com/group/jquery-dev/browse_frm/thread/2721611c278e5e4f?#599c29574f485d5c
It seems like you'd need to special-case all the builtin objects because they don't have standardized constructors or clone methods.
comment:4 Changed 12 years ago by
Keywords: | needsdocs added |
---|---|
Resolution: | → wontfix |
Status: | assigned → closed |
Due to performance/complexity issues I think we just need to document this.
comment:5 Changed 12 years ago by
Keywords: | needsdocs removed |
---|
I think I know how to fix this easily, will do asap.