Sha256: b4fd48a0a6e148167551ba930a43a491ea8b5d65c4579cb0ffd0c3e19b299947

Contents?: true

Size: 877 Bytes

Versions: 24

Compression:

Stored size: 877 Bytes

Contents

// Copyright (c) 2014-2020 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/

#ifndef TAO_JSON_PEGTL_ANALYSIS_RULE_TYPE_HPP
#define TAO_JSON_PEGTL_ANALYSIS_RULE_TYPE_HPP

#include "../config.hpp"

namespace TAO_JSON_PEGTL_NAMESPACE::analysis
{
   enum class rule_type : char
   {
      any,  // Consumption-on-success is always true; assumes bounded repetition of conjunction of sub-rules.
      opt,  // Consumption-on-success not necessarily true; assumes bounded repetition of conjunction of sub-rules.
      seq,  // Consumption-on-success depends on consumption of (non-zero bounded repetition of) conjunction of sub-rules.
      sor   // Consumption-on-success depends on consumption of (non-zero bounded repetition of) disjunction of sub-rules.
   };

}  // namespace TAO_JSON_PEGTL_NAMESPACE::analysis

#endif

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
couchbase-3.0.0-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.beta.1-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.beta.1 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.5-x86_64-linux ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.5-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.5-x86_64-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.5 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.4-x86_64-linux ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.4-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.4 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.3-x86_64-linux ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.3-x86_64-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.3-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.3 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.2-x86_64-linux ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.2-x86_64-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.2-universal-darwin-19 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp
couchbase-3.0.0.alpha.2 ext/third_party/json/include/tao/json/external/pegtl/analysis/rule_type.hpp