summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/expression/lexeme/value.rb
blob: f2611d65fafc21dd188453b0d8f6d77c7910b3bd (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 Value < Lexeme::Base
            def self.type
              :value
            end
          end
        end
      end
    end
  end
end