aboutsummaryrefslogtreecommitdiffstats
path: root/sd-plugin/src/main/java/org/intellij/sdk/language/lexer/SdLexerAdapter.java
blob: c7463fc9823b7800790fad77299cc25cc601c8b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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));
    }
}