Sha256: 5473ac0b1db8b7e81167d2e19ffc92ad76112c61399eb26509e0a697a3bbfb96

Contents?: true

Size: 321 Bytes

Versions: 23

Compression:

Stored size: 321 Bytes

Contents

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

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
webidl-0.0.3 lib/webidl/ast/implements_statement.rb
webidl-0.0.2 lib/webidl/ast/implements_statement.rb
webidl-0.0.1 lib/webidl/ast/implements_statement.rb