(key, val)
| 237 | key, val, desc; |
| 238 | |
| 239 | function addMethod(key, val) { |
| 240 | Canteen.prototype[key] = function() { |
| 241 | this._pushMethod(key, arguments); |
| 242 | return this.context[key].apply(this.context, arguments); |
| 243 | }; |
| 244 | } |
| 245 | |
| 246 | for (key in proto) { |
| 247 | desc = Object.getOwnPropertyDescriptor(CanvasRenderingContext2D.prototype, key); |
no outgoing calls
no test coverage detected
searching dependent graphs…