summaryrefslogtreecommitdiffstats
path: root/sd-plugin/src/main/java/org/intellij/sdk/language/SdLexerAdapter.java
blob: 58329222a193b91ab83c5870306f24904acc5e62 (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;

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 org.intellij.sdk.language.SdLexer(null));
    }
}