File: unsupported_token_converter.rb

package info (click to toggle)
ruby-js-regex 3.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: ruby: 1,002; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 272 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require_relative 'base'

class JsRegex
  module Converter
    #
    # Template class implementation.
    #
    class UnsupportedTokenConverter < JsRegex::Converter::Base
      private

      def convert_data
        warn_of_unsupported_feature
      end
    end
  end
end