blob: 9def80a1a7b69c6438605834b97056c25ec7902b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* This is an implementation of an early-draft specification developed under the Java
* Community Process (JCP) and is made available for testing and evaluation purposes
* only. The code is not compatible with any specification of the JCP.
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.util;
import org.eclipse.jdt.core.dom.AST;
import org.eclipse.jdt.core.dom.ASTNode;
public class ASTHelper {
private static boolean isNodeTypeSupportedInAST(AST ast, int nodeType) {
switch (nodeType) {
case ASTNode.SWITCH_CASE:
case ASTNode.SWITCH_EXPRESSION:
case ASTNode.YIELD_STATEMENT:
return ast.apiLevel() >= AST.JLS14;
case ASTNode.TEXT_BLOCK:
case ASTNode.RECORD_DECLARATION:
return ast.isPreviewEnabled();
}
return true;
}
public static boolean isYieldNodeSupportedInAST(AST ast) {
return isNodeTypeSupportedInAST(ast, ASTNode.YIELD_STATEMENT);
}
public static boolean isSwitchExpressionNodeSupportedInAST(AST ast) {
return isNodeTypeSupportedInAST(ast, ASTNode.SWITCH_EXPRESSION);
}
public static boolean isTextBlockNodeSupportedInAST(AST ast) {
return isNodeTypeSupportedInAST(ast, ASTNode.TEXT_BLOCK);
}
public static boolean isSwitchCaseExpressionsSupportedInAST(AST ast) {
return isNodeTypeSupportedInAST(ast, ASTNode.SWITCH_CASE);
}
public static boolean isRecordDeclarationNodeSupportedInAST(AST ast) {
return isNodeTypeSupportedInAST(ast, ASTNode.RECORD_DECLARATION);
}
}