I'm using the 'show source' directive, however it only works with synchronous functions. With asynchronous ones, I still only see bytecode. Android/iOS the same.
"react": "18.2.0",
"react-native": "0.72.7",
"react-native-webview": "13.6.3"
export const syncFunc = () => {
'show source';
let a = 5;
for (let index = 0; index <= 10; index++) {
a += index;
}
console.log('syncFunc', a);
};
export const asyncFunc = async () => {
'show source';
let a = 5;
for (let index = 0; index <= 10; index++) {
a += index;
}
console.log('asyncFunc', a);
};

I'm using the
'show source'directive, however it only works with synchronous functions. With asynchronous ones, I still only see bytecode. Android/iOS the same."react": "18.2.0",
"react-native": "0.72.7",
"react-native-webview": "13.6.3"