( owner, runtime )
| 4183 | define('runtime/compbase',[],function() { |
| 4184 | |
| 4185 | function CompBase( owner, runtime ) { |
| 4186 | |
| 4187 | this.owner = owner; |
| 4188 | this.options = owner.options; |
| 4189 | |
| 4190 | this.getRuntime = function() { |
| 4191 | return runtime; |
| 4192 | }; |
| 4193 | |
| 4194 | this.getRuid = function() { |
| 4195 | return runtime.uid; |
| 4196 | }; |
| 4197 | |
| 4198 | this.trigger = function() { |
| 4199 | return owner.trigger.apply( owner, arguments ); |
| 4200 | }; |
| 4201 | } |
| 4202 | |
| 4203 | return CompBase; |
| 4204 | }); |
nothing calls this directly
no outgoing calls
no test coverage detected