add info del and info if found unk var

This commit is contained in:
Akbar Yahya 2022-11-12 17:23:17 +08:00
parent dcdadb1fb8
commit 503921ad83
No known key found for this signature in database
GPG Key ID: 0C9985FEC5C018C9
1 changed files with 8 additions and 0 deletions

8
op.js
View File

@ -451,6 +451,10 @@ function clean_proto_gen() {
const read = fs.readFileSync(file); const read = fs.readFileSync(file);
var rd = read.toString(); var rd = read.toString();
if (file.match("Unk")) {
console.log("unk: " + file);
}
// find import // find import
while ((m = regex.exec(rd)) !== null) { while ((m = regex.exec(rd)) !== null) {
// This is necessary to avoid infinite loops with zero-width matches // This is necessary to avoid infinite loops with zero-width matches
@ -465,6 +469,9 @@ function clean_proto_gen() {
if (found_rt) { if (found_rt) {
//console.log(`Skip ${match}`); //console.log(`Skip ${match}`);
} else { } else {
if (match.match("Unk") || file.match("Unk")) {
console.log(file + " require " + match);
}
var subdata = new Object(); var subdata = new Object();
subdata["name"] = match; subdata["name"] = match;
file_toaddmore.push(subdata); file_toaddmore.push(subdata);
@ -505,6 +512,7 @@ function clean_proto_gen() {
if (todoremove) { if (todoremove) {
found_needclean++; found_needclean++;
console.log("Remove file: "+file);
try { try {
fs.unlinkSync(file); fs.unlinkSync(file);
//file removed //file removed