var LibA = {
  hello: function() {
    console.log("hello");
  }
}

mergeInto(LibraryManager.library, LibA);

var LibB = {
 $data__deps: ['LibA'],
 $data: {
  callToLibB: function() {
    How could I call function help from libA?
  }
 }
}

autoAddDeps(LibB , '$data');
mergeInto(LibraryManager.library, LibB);




-- 
You received this message because you are subscribed to the Google Groups 
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to