Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8024970 André Bargull's list on Sep 17, 2013
  3. JDK-8027700

function redeclaration checks missing for declaration binding instantiation

XMLWordPrintable

    • Icon: Sub-task Sub-task
    • Resolution: Fixed
    • Icon: P3 P3
    • 8
    • 8
    • core-libs
    • None
    • b117
    • generic
    • generic

        See ECMA section "10.5 Declaration Binding Instantiation"

        jjs> Object.defineProperty(this,"x",{value:0})
        [object global]
        jjs> eval("function x(){}")
        0

        Expected: Throw TypeError
        Actual: no TypeError

        jjs>
        Object.defineProperty(this,"x",{value:0,writable:true,enumerable:false})
        [object global]
        jjs> eval("function x(){}")
        function x(){}

        Expected: Throw TypeError
        Actual: no TypeError

              sundar Sundararajan Athijegannathan
              sundar Sundararajan Athijegannathan
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

                Created:
                Updated:
                Resolved: