(base, props)
| 774 | function nothing() {} |
| 775 | |
| 776 | function createObj(base, props) { |
| 777 | var inst |
| 778 | if (Object.create) { |
| 779 | inst = Object.create(base) |
| 780 | } else { |
| 781 | nothing.prototype = base |
| 782 | inst = new nothing() |
| 783 | } |
| 784 | if (props) { |
| 785 | copyObj(props, inst) |
| 786 | } |
| 787 | return inst |
| 788 | } |
| 789 | |
| 790 | var nonASCIISingleCaseAtomChar = /[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/ |
| 791 | function isAtomCharBasic(ch) { |
no test coverage detected