All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unlaxer.parser.clang.CStyleDelimitor Maven / Gradle / Ivy

package org.unlaxer.parser.clang;

import java.util.Optional;
import java.util.function.Supplier;

import org.unlaxer.parser.Parser;
import org.unlaxer.parser.combinator.LazyZeroOrMore;

public class CStyleDelimitor extends LazyZeroOrMore{

  @Override
  public Supplier getLazyParser() {
    return CStyleDelimitorElements::new;
  }

  @Override
  public Optional getLazyTerminatorParser() {
    return Optional.empty();
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy