summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/expression/lexeme/operator.rb
blob: 3ebceb92eb74a5f228d23951b561428597cbdf63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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