(v, name)
| 711 | // is optional or |
| 712 | |
| 713 | var ctor = function (v, name) { |
| 714 | this.v = v; |
| 715 | this.name = name; |
| 716 | this._contexts = [null]; |
| 717 | |
| 718 | }; |
| 719 | var proto = ctor.prototype; |
| 720 | |
| 721 | proto.isObject = function () { |
nothing calls this directly
no test coverage detected