eagletmt/fast_haml

View on GitHub
lib/faml/ruby_syntax_checker.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
require 'ripper'

module Faml
  class RubySyntaxChecker < Ripper
    class Error < StandardError
    end

    private

    def on_parse_error(*)
      raise Error
    end
  end
end