blob: 74c35c4a8ab1499937c7714299a9121520e4c72d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Christian Pontesegger and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License_Identifier: EPL-2.0
*
* Contributors:
* Christian Pontesegger - initial API and implementation
*******************************************************************************/
package org.eclipse.ease.lang.python;
import org.eclipse.ease.AbstractCodeParser;
import org.eclipse.ease.ICompletionContext;
import org.eclipse.ease.IScriptEngine;
public class PythonCodeParser extends AbstractCodeParser {
private static final String LINE_COMMENT = "#";
private static final String BLOCK_COMMENT_START = "\"\"\"";
private static final String BLOCK_COMMENT_END = "\"\"\"";
@Override
protected String getLineCommentToken() {
return LINE_COMMENT;
}
@Override
protected boolean hasBlockComment() {
return true;
}
@Override
protected String getBlockCommentEndToken() {
return BLOCK_COMMENT_END;
}
@Override
protected String getBlockCommentStartToken() {
return BLOCK_COMMENT_START;
}
@Override
public ICompletionContext getContext(IScriptEngine scriptEngine, Object resource, String contents, int position, int selectionRange) {
return (scriptEngine != null) ? new PythonCompletionContext(scriptEngine, contents, position)
: new PythonCompletionContext(resource, contents, position);
}
}