package org.jetbrains.plugins.clojure.lexer; import com.intellij.lexer.FlexAdapter; import java.io.Reader; /** * User: peter * Date: Dec 18, 2008 * Time: 8:57:54 AM * Copyright 2007, 2008, 2009 Red Shark Technology * <p/> * http://www.apache.org/licenses/LICENSE-2.0 * <p/> * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ public class ClojureFlexLexer extends FlexAdapter { public ClojureFlexLexer() { super(new _ClojureLexer((Reader) null)); } }