mirror of
https://scm.univ-tours.fr/22107988t/rappaurio-sae501_502.git
synced 2025-08-29 23:45:59 +02:00
19 lines
818 B
JavaScript
19 lines
818 B
JavaScript
'use strict';
|
||
typeof CeL === 'function' && CeL.run({
|
||
// name/id.
|
||
name : 'extension.children2',
|
||
// dependency.
|
||
require : 'extension.parent2.parent2_function',
|
||
// source code.
|
||
code : function() {
|
||
// requiring
|
||
var parent2_function = this.r('parent2_function');
|
||
|
||
function children2_function() {
|
||
parent2_function('children2_function');
|
||
};
|
||
|
||
return [children2_function];
|
||
}
|
||
});
|