We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f751fe commit a683bb4Copy full SHA for a683bb4
src/generate/validator.js
@@ -74,6 +74,7 @@ function analyzeFiles(json) {
74
let result = {};
75
76
for (let repo of json) {
77
+ console.log("Analyze " + repo);
78
result[repo] = {};
79
let cwd = workdir + repo;
80
let dotabap = null;
@@ -171,6 +172,7 @@ function parse(result) {
171
172
let files = listFiles(workdir + repo + result[repo].startingFolder, result[repo].ignoreFiles);
173
174
for (let file of files) {
175
+ console.log(file.name);
176
const buf = fs.readFileSync(file.path + file.name, "utf8");
177
afiles.push(new abaplint.MemoryFile(file.name, buf));
178
}
0 commit comments