( owner, runtime )
| 4347 | define('runtime/compbase',[],function() { |
| 4348 | |
| 4349 | function CompBase( owner, runtime ) { |
| 4350 | |
| 4351 | this.owner = owner; |
| 4352 | this.options = owner.options; |
| 4353 | |
| 4354 | this.getRuntime = function() { |
| 4355 | return runtime; |
| 4356 | }; |
| 4357 | |
| 4358 | this.getRuid = function() { |
| 4359 | return runtime.uid; |
| 4360 | }; |
| 4361 | |
| 4362 | this.trigger = function() { |
| 4363 | return owner.trigger.apply( owner, arguments ); |
| 4364 | }; |
| 4365 | } |
| 4366 | |
| 4367 | return CompBase; |
| 4368 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected