Sha256: 39dfb01c488e2cbf0e5f0e4e0aec2ec79ec0dff3d36866c83fa7113c5368149c

Contents?: true

Size: 436 Bytes

Versions: 6

Compression:

Stored size: 436 Bytes

Contents

#
# 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
    module Grammar
      VALUE       = /([a-zA-Z0-9_$@?\.]+)/
      AND_OP      = /(&&)/
      OR_OP       = /(\|\|)/
      NOT_OP      = /(\!)/
      LEFT_PAREN  = /(\()/
      RIGHT_PAREN = /(\))/
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
logicality-1.0.4 lib/logicality/lexer/grammar.rb
logicality-1.0.3 lib/logicality/lexer/grammar.rb
logicality-1.0.2 lib/logicality/lexer/grammar.rb
logicality-1.0.1 lib/logicality/lexer/grammar.rb
logicality-1.0.0 lib/logicality/lexer/grammar.rb
logicality-0.0.1 lib/logicality/lexer/grammar.rb