mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-1194 Provide completion and navigation for url tag in django template
PY-3591 Support {% url %} tag arguments completion
Only PSI tree is created
This commit is contained in:
@@ -81,6 +81,7 @@ import java.awt.*;
|
||||
import java.io.File;
|
||||
import java.io.FileFilter;
|
||||
import java.io.IOException;
|
||||
import java.lang.reflect.Array;
|
||||
import java.util.*;
|
||||
import java.util.List;
|
||||
|
||||
@@ -88,6 +89,9 @@ import static com.jetbrains.python.psi.PyFunction.Modifier.CLASSMETHOD;
|
||||
import static com.jetbrains.python.psi.PyFunction.Modifier.STATICMETHOD;
|
||||
|
||||
public class PyUtil {
|
||||
|
||||
private static final Object[] EMPTY_OBJECTS = new Object[0];
|
||||
|
||||
private PyUtil() {
|
||||
}
|
||||
|
||||
@@ -827,6 +831,21 @@ public class PyUtil {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns empty array if null is provided. Returns provided array otherwise.
|
||||
* @param expression array expression
|
||||
* @param <T> array type
|
||||
* @return provided array or empty array if parameter is null
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
@NotNull
|
||||
public static <T>T[] notNullArray(@Nullable final T[] expression) {
|
||||
if (expression != null) {
|
||||
return expression;
|
||||
}
|
||||
return (T[]) EMPTY_OBJECTS;
|
||||
}
|
||||
|
||||
public static class KnownDecoratorProviderHolder {
|
||||
public static PyKnownDecoratorProvider[] KNOWN_DECORATOR_PROVIDERS = Extensions.getExtensions(PyKnownDecoratorProvider.EP_NAME);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user