summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/pipeline/expression/lexer.rb
blob: 2734ef34c060f2a0ea7588dbf85e1e0e0dc0195f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Gitlab
  module Ci
    module Pipeline
      module Expression
        class Lexer
          def initialize(statement)
            @statement = statement
          end

          def tokenize
          end
        end
      end
    end
  end
end