( owner, runtime )
| 3941 | define('runtime/compbase',[],function() { |
| 3942 | |
| 3943 | function CompBase( owner, runtime ) { |
| 3944 | |
| 3945 | this.owner = owner; |
| 3946 | this.options = owner.options; |
| 3947 | |
| 3948 | this.getRuntime = function() { |
| 3949 | return runtime; |
| 3950 | }; |
| 3951 | |
| 3952 | this.getRuid = function() { |
| 3953 | return runtime.uid; |
| 3954 | }; |
| 3955 | |
| 3956 | this.trigger = function() { |
| 3957 | return owner.trigger.apply( owner, arguments ); |
| 3958 | }; |
| 3959 | } |
| 3960 | |
| 3961 | return CompBase; |
| 3962 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected