blob: 8160ae12e105380d34a077c5b49407e08ba4cf6b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.tools.emf.ui.script.js.text.scanners;
import org.eclipse.jface.text.rules.IWordDetector;
/**
* A Java aware word detector.
*/
public class JavaScriptWordDetector implements IWordDetector {
/*
* @see IWordDetector#isWordStart
*/
@Override
public boolean isWordStart(char c) {
return Character.isJavaIdentifierStart(c);
}
/*
* @see IWordDetector#isWordPart
*/
@Override
public boolean isWordPart(char c) {
return Character.isJavaIdentifierPart(c);
}
}