blob: ca31d651a358e8b4ec9d8cc8656a927e588fa619 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package fuchsia.developer.plugin.fidl;
import com.intellij.lexer.FlexAdapter;
import java.io.Reader;
public class LexerAdapter extends FlexAdapter {
public LexerAdapter() {
super(new FidlLexer((Reader) null));
}
}