AS3 - some simplifications

This commit is contained in:
Jindra Petřík
2016-02-17 19:43:13 +01:00
parent 253f5392c7
commit 6a8d73c798
25 changed files with 157 additions and 59 deletions

View File

@@ -386,6 +386,10 @@ public abstract class GraphTargetItem implements Serializable, Cloneable {
return EcmaScript.toNumberAs2(getResult());
}
public String getResultAsString() {
return EcmaScript.toString(getResult());
}
public String toStringNoQuotes(LocalData localData) {
// todo: honfika: this method should not be called, maybe we should throw an exception
return toString();