debian-mirror-gitlab/lib/gitlab/ci/pipeline/expression/lexeme/operator.rb
2018-12-13 13:39:08 +05:30

17 lines
283 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Expression
module Lexeme
class Operator < Lexeme::Base
def self.type
:operator
end
end
end
end
end
end
end