* Detect whether `name` has a definition. Equivalent to * `get(name) != null`.
(name: string)
| 70 | * `get(name) != null`. |
| 71 | */ |
| 72 | has(name: string): boolean { |
| 73 | return this.current.hasOwnProperty(name) || |
| 74 | this.builtins.hasOwnProperty(name); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Get the current value of a name, or `undefined` if there is no value. |
no outgoing calls
no test coverage detected