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

24 lines
456 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-27 19:54:05 +05:30
module Gitlab
module Ci
module Pipeline
module Expression
module Lexeme
class Operator < Lexeme::Base
2019-09-04 21:01:54 +05:30
OperatorError = Class.new(Expression::ExpressionError)
2018-03-27 19:54:05 +05:30
def self.type
2020-10-24 23:57:45 +05:30
raise NotImplementedError
2018-03-27 19:54:05 +05:30
end
2019-09-04 21:01:54 +05:30
def self.precedence
raise NotImplementedError
end
2018-03-27 19:54:05 +05:30
end
end
end
end
end
end