Java Code Examples for org.eclipse.jdt.core.dom.ASTNode#getFlags()

The following examples show how to use org.eclipse.jdt.core.dom.ASTNode#getFlags() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SelfEncapsulateFieldRefactoring.java    From eclipse.jdt.ls with Eclipse Public License 2.0 5 votes vote down vote up
private RefactoringStatus mappingErrorFound(RefactoringStatus result, ASTNode node) {
	if (node != null && (node.getFlags() & ASTNode.MALFORMED) != 0 && processCompilerError(result, node)) {
		return result;
	}
	result.addFatalError(getMappingErrorMessage());
	return result;
}
 
Example 2
Source File: SemanticHighlightingReconciler.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 5 votes vote down vote up
@Override
protected boolean visitNode(ASTNode node) {
	if ((node.getFlags() & ASTNode.MALFORMED) == ASTNode.MALFORMED) {
		retainPositions(node.getStartPosition(), node.getLength());
		return false;
	}
	return true;
}
 
Example 3
Source File: JavaErrorCheckVisitor.java    From compiler with Apache License 2.0 4 votes vote down vote up
@Override
public boolean preVisit2(ASTNode node) {
	if ((node.getFlags() & ASTNode.MALFORMED) != 0 || (node.getFlags() & ASTNode.RECOVERED) != 0)
		hasError = true;
	return !hasError;
}
 
Example 4
Source File: IntroduceParameterObjectProcessor.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
private RefactoringStatus mappingErrorFound(RefactoringStatus result, ASTNode node) {
	if (node != null && (node.getFlags() & ASTNode.MALFORMED) != 0 && processCompilerError(result, node))
		return result;
	result.addFatalError(getMappingErrorMessage());
	return result;
}
 
Example 5
Source File: SelfEncapsulateFieldRefactoring.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
private RefactoringStatus mappingErrorFound(RefactoringStatus result, ASTNode node) {
	if (node != null && (node.getFlags() & ASTNode.MALFORMED) != 0 && processCompilerError(result, node))
		return result;
	result.addFatalError(getMappingErrorMessage());
	return result;
}
 
Example 6
Source File: SortElementsOperation.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
protected boolean isMalformed(ASTNode node) {
	return (node.getFlags() & ASTNode.MALFORMED) != 0;
}
 
Example 7
Source File: RewriteEventStore.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
public static boolean isNewNode(ASTNode node) {
	return (node.getFlags() & ASTNode.ORIGINAL) == 0;
}