/* * Copyright 2013-2017 consulo.io * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package consulo.csharp.lang; import org.jetbrains.annotations.NotNull; import com.intellij.lang.PsiParser; import com.intellij.lexer.Lexer; import com.intellij.psi.tree.TokenSet; import consulo.csharp.lang.lexer.CSharpLexer; import consulo.csharp.lang.parser.CSharpParser; import consulo.csharp.lang.psi.CSharpTokenSets; import consulo.csharp.module.extension.CSharpLanguageVersion; import consulo.lang.LanguageVersion; import consulo.lang.LanguageVersionWithParsing; /** * @author VISTALL * @since 22.11.13. */ public class CSharpLanguageVersionWrapper extends LanguageVersion implements LanguageVersionWithParsing { private final CSharpLanguageVersion myLanguageVersion; public CSharpLanguageVersionWrapper(CSharpLanguageVersion languageVersion) { super(languageVersion.name(), languageVersion.getPresentableName(), CSharpLanguage.INSTANCE); myLanguageVersion = languageVersion; } @NotNull @Override public PsiParser createParser() { return new CSharpParser(); } @NotNull @Override public Lexer createLexer() { return new CSharpLexer(); } @NotNull @Override public TokenSet getCommentTokens() { return CSharpTokenSets.COMMENTS; } @NotNull @Override public TokenSet getStringLiteralElements() { return CSharpTokenSets.LITERALS; } @NotNull @Override public TokenSet getWhitespaceTokens() { return CSharpTokenSets.WHITESPACES; } public CSharpLanguageVersion getLanguageVersion() { return myLanguageVersion; } }