()
| 717 | } |
| 718 | |
| 719 | String[] getStringArray() { |
| 720 | Variable[] a1 = getArray(); |
| 721 | String[] a2 = new String[a1.length]; |
| 722 | for (int i=0; i<a1.length; i++) { |
| 723 | String s = a1[i].getString(); |
| 724 | if (s==null) s = "" + a1[i].getValue(); |
| 725 | a2[i] = s; |
| 726 | } |
| 727 | return a2; |
| 728 | } |
| 729 | |
| 730 | Variable[] getArray() { |
| 731 | interp.getToken(); |
no test coverage detected