Files
rappaurio-sae501_502/app/node_modules/cejs/extension/parent1.js
2023-09-25 13:27:24 +02:00

29 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
typeof CeL === 'function' && CeL.run({
// name/id.
name : 'extension.parent1',
// dependency.
require : 'extension.loop1.loop1_function|extension.loop2.',
// source code.
code : function() {
var library_namespace = this.base,
// requiring
loop1_function = this.r('loop1_function');
var _ = function() {
// null module constructor
};
_.parent1_function = function(caller) {
loop1_function(caller || 'parent1_function');
library_namespace.loop2_function(caller || 'parent1_function');
};
// for inherit.
_.grant = function(subclass) {
};
return _;
}
});