()
| 89 | // ----------------------------------------------------------------------------- |
| 90 | |
| 91 | function Validator() { |
| 92 | this._roots = { |
| 93 | stdlib: null, |
| 94 | foreign: null, |
| 95 | heap: null |
| 96 | }; |
| 97 | this._globals = env(this); |
| 98 | this._locals = null; |
| 99 | this._src = null; |
| 100 | this._result = null; |
| 101 | } |
| 102 | |
| 103 | var Vp = Validator.prototype; |
| 104 |
nothing calls this directly
no outgoing calls
no test coverage detected