Compare commits
No commits in common. "4bfda6b0a1a3e93b3c8aa0cabb674dfdcc932e50" and "120e59577d5a2ca7e03700ec39b385d6a34df5d7" have entirely different histories.
4bfda6b0a1
...
120e59577d
@ -1,4 +1,4 @@
|
|||||||
project_group = me.topchetoeu.j2s
|
project_group = me.topchetoeu.j2s
|
||||||
project_name = j2s
|
project_name = j2s
|
||||||
project_version = 0.10.11-beta
|
project_version = 0.10.10-beta
|
||||||
main_class = me.topchetoeu.j2s.repl.SimpleRepl
|
main_class = me.topchetoeu.j2s.repl.SimpleRepl
|
||||||
|
@ -323,7 +323,7 @@ public final class Frame {
|
|||||||
/**
|
/**
|
||||||
* Induces a value on the stack (as if it were returned by the last function call)
|
* Induces a value on the stack (as if it were returned by the last function call)
|
||||||
* and executes the next instruction in the frame.
|
* and executes the next instruction in the frame.
|
||||||
*
|
*
|
||||||
* @param value The value to induce
|
* @param value The value to induce
|
||||||
*/
|
*/
|
||||||
public final Value next(Value value) {
|
public final Value next(Value value) {
|
||||||
@ -334,7 +334,7 @@ public final class Frame {
|
|||||||
* Note that this is different than just throwing the error outside the
|
* Note that this is different than just throwing the error outside the
|
||||||
* function, as the function executed could have a try-catch which
|
* function, as the function executed could have a try-catch which
|
||||||
* would otherwise handle the error
|
* would otherwise handle the error
|
||||||
*
|
*
|
||||||
* @param error The error to induce
|
* @param error The error to induce
|
||||||
*/
|
*/
|
||||||
public final Value induceError(EngineException error) {
|
public final Value induceError(EngineException error) {
|
||||||
@ -346,7 +346,7 @@ public final class Frame {
|
|||||||
* Note that this is different than just returning the value outside the
|
* Note that this is different than just returning the value outside the
|
||||||
* function, as the function executed could have a try-catch which
|
* function, as the function executed could have a try-catch which
|
||||||
* would otherwise handle the error
|
* would otherwise handle the error
|
||||||
*
|
*
|
||||||
* @param value The retunr value to induce
|
* @param value The retunr value to induce
|
||||||
*/
|
*/
|
||||||
public final Value induceReturn(Value value) {
|
public final Value induceReturn(Value value) {
|
||||||
|
@ -57,7 +57,7 @@ public final class StringValue implements PrimitiveValue {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return PrimitiveValue.super.getOwnMember(env, key);
|
return StringValue.this.getOwnMember(env, key);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public Set<String> getOwnMembers(Environment env, boolean onlyEnumerable) {
|
@Override public Set<String> getOwnMembers(Environment env, boolean onlyEnumerable) {
|
||||||
|
Loading…
Reference in New Issue
Block a user