debian-mirror-gitlab/lib/gitlab/ci/pipeline/expression/lexeme/parenthesis_close.rb

24 lines
406 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# 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