method

expected

expected()
public

No documentation available.

# File lib/rexml/validation/relaxng.rb, line 511
      def expected
        return [@events[@current]] if @events[@current]
        return @choices[@choice..-1].collect do |x|
          if x[0].kind_of? State
            x[0].expected
          else
            x[0]
          end
        end.flatten
      end