use of com.redhat.qute.parser.expression.MethodPart in project quarkus-ls by redhat-developer.
the class QutePositionUtility method findBestNode.
/**
* Find the best node from the given expression at the given offset.
*
* @param expression the expression node.
* @param offset the offset.
*
* @return the best node from the given expression at the given offset.
*/
private static Node findBestNode(Expression expression, int offset) {
Node expressionNode = expression.findNodeExpressionAt(offset);
if (expressionNode != null) {
if (expressionNode instanceof MethodPart) {
MethodPart method = (MethodPart) expressionNode;
Parameter parameter = method.getParameterAtOffset(offset);
if (parameter != null) {
Expression parameterExpression = parameter.getJavaTypeExpression();
if (parameterExpression != null) {
return findBestNode(parameterExpression, offset);
}
return parameter;
}
}
return expressionNode;
}
return expression;
}
use of com.redhat.qute.parser.expression.MethodPart in project quarkus-ls by redhat-developer.
the class QuteSearchUtils method tryToCollectObjectParts.
/**
* Try to collect all object parts from the given expression
* <code>nodeExpr</code> which matches the given part name
* <code>partName</code>.
*
* @param partName the part name.
* @param matcher the matcher strategy.
* @param nodeExpr the Qute node expression
* @param collector the node collector.
*
* @return true if the given nodeExpr reference the part name as object part and
* false otherwise.
*/
private static boolean tryToCollectObjectParts(String partName, PartNameMatcher matcher, Node nodeExpr, BiConsumer<Node, Range> collector) {
switch(nodeExpr.getKind()) {
case Expression:
{
Expression expression = (Expression) nodeExpr;
boolean result = false;
List<Node> nodes = expression.getExpressionContent();
for (Node node : nodes) {
// ex : partName=item
// node expression can be
// 1) a simple expression:
// --> {item_count} --> [ObjectPart=item_count]
// --> {item.name} --> [ObjectPart=item, PropertyPart=name)
// --> {item.getName()} --> [ObjectPart=item, MethodPart=getName())
// In those cases, one object part will be collected =>{|item|_count},
// {|item|.name}, {|item|.getName()}
// 2) an expression with method part which can host another expressions when
// method have parameters
// --> {item.getName(item.name)} --> [ObjectPart=item,
// MethodPart=getName(item.name))
// In this case, two object parts will be collected =>
// {|item|.getName(|item|.name)}
result |= tryToCollectObjectParts(partName, matcher, node, collector);
}
return result;
}
case ExpressionParts:
{
Parts parts = (Parts) nodeExpr;
boolean result = false;
for (Node partNode : parts.getChildren()) {
result |= tryToCollectObjectParts(partName, matcher, partNode, collector);
}
return result;
}
case ExpressionPart:
{
Part part = (Part) nodeExpr;
if (part.getPartKind() == PartKind.Object) {
ObjectPart objectPart = (ObjectPart) part;
if (isMatch(objectPart, partName, matcher)) {
Range range = QutePositionUtility.createRange(objectPart);
collector.accept(objectPart, range);
return true;
}
} else if (part.getPartKind() == PartKind.Method) {
MethodPart methodPart = (MethodPart) part;
List<Parameter> parameters = methodPart.getParameters();
boolean result = false;
for (Parameter parameter : parameters) {
Expression paramExpr = parameter.getJavaTypeExpression();
if (paramExpr != null) {
result |= tryToCollectObjectParts(partName, matcher, paramExpr, collector);
}
}
return result;
}
}
break;
default:
break;
}
return false;
}
Aggregations