加个 debug
This commit is contained in:
parent
ebbe3180c1
commit
6a3a9098a4
@ -3282,9 +3282,9 @@
|
|||||||
return result
|
return result
|
||||||
},
|
},
|
||||||
get_obfuscated_value(a) {
|
get_obfuscated_value(a) {
|
||||||
var s = $.hashmap_str_str.h(0, a)
|
var result = $.hashmap_str_str.h(0, a)
|
||||||
if (s == null) return ""
|
if (result == null) return ""
|
||||||
return s
|
return result
|
||||||
},
|
},
|
||||||
out_load_lan(a) {
|
out_load_lan(a) {
|
||||||
J.lY(a, new LanData.load_lan())
|
J.lY(a, new LanData.load_lan())
|
||||||
@ -12360,7 +12360,7 @@
|
|||||||
}
|
}
|
||||||
q = new T.aq(n, l)
|
q = new T.aq(n, l)
|
||||||
|
|
||||||
|
output(p.current_count, p.target_count, p.win_count * 100 / p.current_count)
|
||||||
//捕获胜率
|
//捕获胜率
|
||||||
if (p.current_count >= config[stage].count) {
|
if (p.current_count >= config[stage].count) {
|
||||||
const {
|
const {
|
||||||
|
@ -37,7 +37,7 @@ async function test(str){
|
|||||||
resources: 'usable',
|
resources: 'usable',
|
||||||
beforeParse(window) {
|
beforeParse(window) {
|
||||||
window.FakelocalStorage = localStorageMock;
|
window.FakelocalStorage = localStorageMock;
|
||||||
window.config =[{"count":5000,"score":10}];
|
window.config =[{"count":11000,"score":10}];
|
||||||
window.name_input = str;
|
window.name_input = str;
|
||||||
window.stage = 0;
|
window.stage = 0;
|
||||||
window.skillData = [];
|
window.skillData = [];
|
||||||
@ -45,7 +45,10 @@ async function test(str){
|
|||||||
console.log(args);
|
console.log(args);
|
||||||
resolvePromise(args);
|
resolvePromise(args);
|
||||||
window.close();
|
window.close();
|
||||||
}
|
};
|
||||||
|
window.output = (...message) => {
|
||||||
|
console.log('From the page:', message);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user