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

23 lines
456 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Pipeline
module Expression
module Lexeme
class Operator < Lexeme::Base
OperatorError = Class.new(Expression::ExpressionError)
def self.type
raise NotImplementedError
end
def self.precedence
raise NotImplementedError
end
end
end
end
end
end
end