зеркало из https://github.com/mozilla/pjs.git
Using ScriptRuntime.emptyStrings to return emoty var array
This commit is contained in:
Родитель
a9f4d1e47b
Коммит
4047861bf2
|
@ -130,7 +130,11 @@ public class ScriptOrFnNode extends Node {
|
||||||
}
|
}
|
||||||
|
|
||||||
public final String[] getParamAndVarNames() {
|
public final String[] getParamAndVarNames() {
|
||||||
String[] array = new String[itsVariables.size()];
|
int N = itsVariables.size();
|
||||||
|
if (N == 0) {
|
||||||
|
return ScriptRuntime.emptyStrings;
|
||||||
|
}
|
||||||
|
String[] array = new String[N];
|
||||||
itsVariables.toArray(array);
|
itsVariables.toArray(array);
|
||||||
return array;
|
return array;
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче