Welcome to mirror list, hosted at ThFree Co, Russian Federation.

operator.rb « lexeme « expression « pipeline « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f640d0b5855f7197a9979fd973df7b76f48fcf33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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