File: freespace_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-- 258 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 FreespaceConverter < JsRegex::Converter::Base
      private

      def convert_data
        drop_without_warning
      end
    end
  end
end