3 use: function (module
, symbols
) {
4 var components
= module
.split(/\./);
5 var fn
= components
.join('/') + '.js';
8 for (i
= 0; i
< components
.length
; i
++) {
10 if (typeof(o
) == 'undefined') {
14 if (typeof(o
) != 'undefined') {
20 for (i
= 0; i
< components
.length
; i
++) {
22 if (typeof(o
) == 'undefined') {
27 var tags
= o
.EXPORT_TAGS
;
29 symbols
= tags
[':common'] || tags
[':all'];
33 for (i
= 0; i
< symbols
.length
; i
++) {
35 JSAN
.global
[c
] = o
[c
];