jarib/webidl

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

Summary

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

      attr_reader :return_type

      def initialize(return_type)
        @return_type = return_type
      end

    end # PromiseType
  end # Ast
end # WebIDL