( owner, runtime )
| 4495 | define('runtime/compbase',[],function() { |
| 4496 | |
| 4497 | function CompBase( owner, runtime ) { |
| 4498 | |
| 4499 | this.owner = owner; |
| 4500 | this.options = owner.options; |
| 4501 | |
| 4502 | this.getRuntime = function() { |
| 4503 | return runtime; |
| 4504 | }; |
| 4505 | |
| 4506 | this.getRuid = function() { |
| 4507 | return runtime.uid; |
| 4508 | }; |
| 4509 | |
| 4510 | this.trigger = function() { |
| 4511 | return owner.trigger.apply( owner, arguments ); |
| 4512 | }; |
| 4513 | } |
| 4514 | |
| 4515 | return CompBase; |
| 4516 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected