jarib/webidl

View on GitHub
lib/webidl/ast/implements_statement.rb

Summary

Maintainability
A
0 mins
Test Coverage
module WebIDL
  module Ast
    class ImplementsStatement < Node

      attr_reader :implementor, :implementee

      def initialize(parent, implementor_name, implementee_name)
        @implementor = implementor_name
        @implementee = implementee_name
      end

    end # ImplementsStatement
  end # Ast
end # WebIDL