Sha256: 10c6dd215f72e0b1435fd97a504c82e44129dc918709abb7b96be773a5746f1f

Contents?: true

Size: 288 Bytes

Versions: 9

Compression:

Stored size: 288 Bytes

Contents

module WebIDL
  module ParseTree
    class Exception < Treetop::Runtime::SyntaxNode

      def build(parent)
        ex = Ast::Exception.new(parent, name.text_value)

        members.build(ex) unless members.empty?

        ex
      end

    end # Exception
  end # ParseTree
end # WebIDL

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
webidl-0.0.9 lib/webidl/parse_tree/exception.rb
webidl-0.0.8 lib/webidl/parse_tree/exception.rb
webidl-0.0.7 lib/webidl/parse_tree/exception.rb
webidl-0.0.6 lib/webidl/parse_tree/exception.rb
webidl-0.0.5 lib/webidl/parse_tree/exception.rb
webidl-0.0.4 lib/webidl/parse_tree/exception.rb
webidl-0.0.3 lib/webidl/parse_tree/exception.rb
webidl-0.0.2 lib/webidl/parse_tree/exception.rb
webidl-0.0.1 lib/webidl/parse_tree/exception.rb