Package com.dci.intellij.dbn.language.psql.dialect.postgres

Source Code of com.dci.intellij.dbn.language.psql.dialect.postgres.PostgresPSQLParserDefinition

package com.dci.intellij.dbn.language.psql.dialect.postgres;

import com.dci.intellij.dbn.language.psql.PSQLParserDefinition;
import com.intellij.lexer.FlexAdapter;
import com.intellij.lexer.Lexer;
import com.intellij.openapi.project.Project;
import org.jetbrains.annotations.NotNull;


public class PostgresPSQLParserDefinition extends PSQLParserDefinition {

    public PostgresPSQLParserDefinition(PostgresPSQLParser parser) {
        super(parser);
    }

    @NotNull
    public Lexer createLexer(Project project) {
        return new FlexAdapter(new PostgresPSQLParserFlexLexer(getTokenTypes()));
    }


}
TOP

Related Classes of com.dci.intellij.dbn.language.psql.dialect.postgres.PostgresPSQLParserDefinition

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.