Compare commits
2 Commits
0.9.10-bet
...
0.9.12-bet
| Author | SHA1 | Date | |
|---|---|---|---|
|
d8ea6557df
|
|||
|
5ba858545a
|
2
.github/workflows/tagged-release.yml
vendored
2
.github/workflows/tagged-release.yml
vendored
@@ -3,7 +3,7 @@ name: "tagged-release"
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- "v*"
|
- "*"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
tagged-release:
|
tagged-release:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
project_group = me.topchetoeu
|
project_group = me.topchetoeu
|
||||||
project_name = jscript
|
project_name = jscript
|
||||||
project_version = 0.9.10-beta
|
project_version = 0.9.12-beta
|
||||||
main_class = me.topchetoeu.jscript.utils.JScriptRepl
|
main_class = me.topchetoeu.jscript.utils.JScriptRepl
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public class AsyncFunctionLib extends FunctionValue {
|
|||||||
public void onReject(EngineException err) {
|
public void onReject(EngineException err) {
|
||||||
next(ctx, Values.NO_RETURN, err);
|
next(ctx, Values.NO_RETURN, err);
|
||||||
}
|
}
|
||||||
});
|
}.defer(ctx));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ public class AsyncGeneratorLib {
|
|||||||
@Override public void onReject(EngineException err) {
|
@Override public void onReject(EngineException err) {
|
||||||
next(ctx, Values.NO_RETURN, Values.NO_RETURN, err);
|
next(ctx, Values.NO_RETURN, Values.NO_RETURN, err);
|
||||||
}
|
}
|
||||||
});
|
}.defer(ctx));
|
||||||
}
|
}
|
||||||
else if (state == 2) {
|
else if (state == 2) {
|
||||||
var obj = new ObjectValue();
|
var obj = new ObjectValue();
|
||||||
|
|||||||
Reference in New Issue
Block a user