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

org.sonar.jproperties.parser.JavaPropertiesLexicalGrammar Maven / Gradle / Ivy

There is a newer version: 2.6
Show newest version
/*
 * SonarQube Java Properties Plugin
 * Copyright (C) 2015-2016 David RACODON
 * [email protected]
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
package org.sonar.jproperties.parser;

import com.sonar.sslr.api.GenericTokenType;
import org.sonar.sslr.grammar.GrammarRuleKey;
import org.sonar.sslr.grammar.LexerlessGrammarBuilder;

public enum JavaPropertiesLexicalGrammar implements GrammarRuleKey {

  PROPERTIES,
  PROPERTY,
  KEY,
  VALUE,
  KEY_LITERAL,
  VALUE_LITERAL,
  SEPARATOR,
  COLON_SEPARATOR,
  EQUALS_SEPARATOR,
  SPACING,
  WHITESPACES_WITHOUT_LINE_BREAK,
  BOM,
  EOF;

  public static LexerlessGrammarBuilder createGrammar() {
    LexerlessGrammarBuilder b = LexerlessGrammarBuilder.create();
    syntax(b);
    b.setRootRule(PROPERTIES);
    return b;
  }

  private static void syntax(LexerlessGrammarBuilder b) {
    b.rule(EOF).is(SPACING, b.token(GenericTokenType.EOF, b.endOfInput()));
    b.rule(BOM).is("\ufeff");

    b.rule(WHITESPACES_WITHOUT_LINE_BREAK).is(b.skippedTrivia(b.regexp("(?




© 2015 - 2024 Weber Informatics LLC | Privacy Policy