( owner, runtime )
| 4385 | define('runtime/compbase',[],function() { |
| 4386 | |
| 4387 | function CompBase( owner, runtime ) { |
| 4388 | |
| 4389 | this.owner = owner; |
| 4390 | this.options = owner.options; |
| 4391 | |
| 4392 | this.getRuntime = function() { |
| 4393 | return runtime; |
| 4394 | }; |
| 4395 | |
| 4396 | this.getRuid = function() { |
| 4397 | return runtime.uid; |
| 4398 | }; |
| 4399 | |
| 4400 | this.trigger = function() { |
| 4401 | return owner.trigger.apply( owner, arguments ); |
| 4402 | }; |
| 4403 | } |
| 4404 | |
| 4405 | return CompBase; |
| 4406 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected