Where is the method exported by weex jsframenwork called?

look at the source code of Vue and see how the weex platform is built. Vue is encapsulated and enhanced in Vue/src/platforms/weex/entry-framework.js. Then three methods are derived:
1.createInstanceContext
2.destroyInstance
3.refreshInstance
it is obvious that these three js methods should be used natively for android. Because the receive parameter is instanceId;weex;data.
but I can"t find a createInstanceContext method natively.
so I guess the v8 engine / jni layer calls the createInstanceContext method to create a Vue instance of a single weex page.
but it"s not good, and it hasn"t been found yet.
ask the boss for advice. Thank you!

Apr.11,2021
Menu