// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package org.intellij.sdk.language.lexer; import com.intellij.lexer.FlexAdapter; /** * This class adapts the JFlex lexer to the IntelliJ Platform Lexer API. * @author Shahar Ariel */ public class SdLexerAdapter extends FlexAdapter { public SdLexerAdapter() { super(new SdLexer(null)); } }