debian-mirror-gitlab/lib/gitlab/ci/pipeline/expression/lexeme/parenthesis_close.rb
2020-10-24 23:57:45 +05:30

23 lines
406 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Expression
module Lexeme
class ParenthesisClose < Lexeme::Operator
PATTERN = /\)/.freeze
def self.type
:parenthesis_close
end
def self.precedence
900
end
end
end
end
end
end
end