Sha256: 7bf9981f17174ba31164345854bf6fea35db73d0d0048ad44dfc7ff0cff9f2fa

Contents?: true

Size: 355 Bytes

Versions: 9

Compression:

Stored size: 355 Bytes

Contents

module WebIDL
  module Ast
    class Callback < Node
      
      attr_reader :name, :return_type, :arguments
      attr_accessor :extended_attributes

      def initialize(name, return_type, arguments)
        @name        = name
        @return_type = return_type
        @arguments   = arguments
      end

    end # Operation
  end # Ast
end # WebIDL

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
webidl-0.2.2 lib/webidl/ast/callback.rb
webidl-0.2.1 lib/webidl/ast/callback.rb
webidl-0.1.10 lib/webidl/ast/callback.rb
webidl-0.2.0 lib/webidl/ast/callback.rb
webidl-0.1.9 lib/webidl/ast/callback.rb
webidl-0.1.8 lib/webidl/ast/callback.rb
webidl-0.1.7 lib/webidl/ast/callback.rb
webidl-0.1.6 lib/webidl/ast/callback.rb
webidl-0.1.5 lib/webidl/ast/callback.rb