Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8147845

Varargs Array functions still leaking longs

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 9
    • 9
    • core-libs
    • None
    • b103
    • generic
    • generic

        The varargs methods of the Array unshift() and push() methods can still return longs, which shouldn't be the case after JDK-8143896 as longs are no longer considered JavaScript Numbers. This normally only occurs with optimistic types disabled.

        var x = [1, 2, 3];
        print(x.push() === 3); // prints false instead of true
        print(x.unshift() === 3); // prints false instead of true

              hannesw Hannes Wallnoefer
              hannesw Hannes Wallnoefer
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: