ekibun
ekibun
代码写太乱了。目前的计划是重构比适配页面更优先。需要适配什么页面可以先提出来,我得想想怎么加。。
> 主要是在webview里面进入已适配的页面还是webview 不会吧,条目页、帖子和日志应该会自动跳到原生页面上的吧。人物和剧集没跳是因为有些信息超展开看不到。
> 有些地方跳转不太好,比如小组帖子和日志 能举个例子吗我不清楚哪里有问题
In quickjs, integer larger than 2147483647 is stored in double please see https://262.ecma-international.org/5.1/#sec-8.5 and https://bellard.org/quickjs/quickjs.html#Numbers
I do not know what behavior you want. Is there any problem that using `num` type in package built_value? Currently type wrapper cannot tell whether the passed js float point...
本身是同步的,会直接返回结果,如果要await可以包一层匿名函数: ``` (async () { var tmp = await http("https://www.baidu.com"); })(); ``` 这样在dart里面收到的是`Future`
flutter没法反射。 可以揉一个wrapper: jsScript: ```javascript (handler) => { function Person() { const opaque = handler["new"](); Object.defineProperty(this, "name", { get: () => handler["getName"](opaque), set: (val) => handler["setName"](opaque, val), }); } this.Person =...
差不多的,还是得在dart里写wrapper: jsScript: ```javascript (obj, handler) => { Object.defineProperty(obj, "name", { get: () => handler["getName"](obj), set: (val) => handler["setName"](obj, val), }); this.person = obj; } ``` dart: ```dart final setupPerson =...
Hi, I've tried to add stack check for msvc as follow. It works fine in my case, but I'm not sure the replacement is correct. ```diff static inline uintptr_t js_get_stack_pointer(void)...
> 'G:\EZ\arialunisdfu' can't be loaded because another AssetBundle with the same files is already loaded. 还是无法加载字体包,这个有办法解决吗。il2cpp得 不是这个pr要改的内容,请开新的issue。 AB只能加载一次,可能是其他插件读取了这个东西或者和游戏某个文件重复了,建议换个字体文件试试。