Sha256: 7ec699321dd7b3cd913eaa7bc6f3e7f9b9ccdb5cb1a2cc3f3f82c7a4533c3180

Contents?: true

Size: 312 Bytes

Versions: 23

Compression:

Stored size: 312 Bytes

Contents

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

      def build(parent)
        result = []

        result << name.build(parent)
        result += names.build(parent) unless names.empty?

        result
      end

    end # ScopedNameList
  end # ParseTree
end # WebIDL

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
webidl-0.2.2 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.2.1 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.10 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.2.0 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.9 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.8 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.7 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.6 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.5 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.4 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.3 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.2 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.1 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.1.0 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.0.9 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.0.8 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.0.7 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.0.6 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.0.5 lib/webidl/parse_tree/scoped_name_list.rb
webidl-0.0.4 lib/webidl/parse_tree/scoped_name_list.rb