Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitai-bot committed Jun 20, 2024
1 parent 24dc9b8 commit 0fe3e9d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion devel/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<script>
Raven.config('https://[email protected]/202888', {
environment: "devel",
release: "f53caf2514c17f37d683f224020decd3b3547677",
release: "08f45e6c8f557aaf1389cbfe96193b2fd21d4c04",
}).install();
</script>

Expand Down
4 changes: 2 additions & 2 deletions devel/js/v1/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,8 @@ define(["require", "exports", "localforage", "vue", "./app.layout", "./app.files
exports.app = new AppController();
var kaitaiIde = window["kaitaiIde"] = {};
kaitaiIde.version = "0.1";
kaitaiIde.commitId = "f53caf2514c17f37d683f224020decd3b3547677";
kaitaiIde.commitDate = "2024-04-15 19:48:36";
kaitaiIde.commitId = "08f45e6c8f557aaf1389cbfe96193b2fd21d4c04";
kaitaiIde.commitDate = "2024-06-20 15:08:57";
$(() => {
$("#webIdeVersion").text(kaitaiIde.version);
$("#webideCommitId")
Expand Down
13 changes: 9 additions & 4 deletions devel/js/v1/kaitaiWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,15 @@ function exportValue(obj, debug, hasRawAttr, path, noLazy) {
}
}
else if (result.type === ObjectType.Array) {
result.arrayItems = obj.map((item, i) => exportValue(item, debug && debug.arr && debug.arr[i], hasRawAttr, path.concat(i.toString()), noLazy));
if (result.incomplete && debug && debug.arr) {
debug.end = inferDebugEnd(debug.arr);
result.end = debug.end;
if (debug && debug.arr) {
result.arrayItems = debug.arr.map((itemDebug, i) => exportValue(obj[i], itemDebug, hasRawAttr, path.concat(i.toString()), noLazy));
if (result.incomplete) {
debug.end = inferDebugEnd(debug.arr);
result.end = debug.end;
}
}
else {
result.arrayItems = obj.map((item, i) => exportValue(item, undefined, hasRawAttr, path.concat(i.toString()), noLazy));
}
}
else if (result.type === ObjectType.Object) {
Expand Down

0 comments on commit 0fe3e9d

Please sign in to comment.