Skip to content

Commit 33a1813

Browse files
committed
Bugfix
1 parent 47aa9db commit 33a1813

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

dist/easycoder.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,9 +1154,9 @@ const EasyCoder_Core = {
11541154
}
11551155
target.value = program.dataStack.pop();
11561156
target.value[target.index] = {
1157-
type: value.type,
1158-
numeric: value.numeric,
1159-
content: value.content
1157+
type: target.value.type,
1158+
numeric: target.value.numeric,
1159+
content: target.value.content
11601160
};
11611161
if (target.imported) {
11621162
const exporterRecord = EasyCoder.scripts[target.exporter].getSymbolRecord(target.exportedName);

js/easycoder/Core.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,9 +1154,9 @@ const EasyCoder_Core = {
11541154
}
11551155
target.value = program.dataStack.pop();
11561156
target.value[target.index] = {
1157-
type: value.type,
1158-
numeric: value.numeric,
1159-
content: value.content
1157+
type: target.value.type,
1158+
numeric: target.value.numeric,
1159+
content: target.value.content
11601160
};
11611161
if (target.imported) {
11621162
const exporterRecord = EasyCoder.scripts[target.exporter].getSymbolRecord(target.exportedName);

0 commit comments

Comments
 (0)