debian-mirror-gitlab/lib/gitlab/ci/pipeline/expression/lexeme/operator.rb
2018-03-27 19:54:05 +05:30

15 lines
252 B
Ruby

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