Sha256: 984dd23dc1de6180638ded7e39192ce63d1c4f6a54af7e75a1da512a60c6a46a

Contents?: true

Size: 536 Bytes

Versions: 1

Compression:

Stored size: 536 Bytes

Contents

# frozen_string_literal: true

#
# Copyright (c) 2018-present, Blue Marble Payroll, LLC
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
#

module Logicality
  module Lexer
    # Define the main regular expression matchers used by the lexer.
    module Grammar
      VALUE       = /([a-zA-Z0-9_$@?\.]+)/
      AND_OP      = /(&&)/
      OR_OP       = /(\|\|)/
      NOT_OP      = /(\!)/
      LEFT_PAREN  = /(\()/
      RIGHT_PAREN = /(\))/
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
logicality-1.0.5 lib/logicality/lexer/grammar.rb