test/script/basic/es6/block-function-decl.js.EXPECTED

Thu, 04 Sep 2014 18:47:18 +0200

author
hannesw
date
Thu, 04 Sep 2014 18:47:18 +0200
changeset 991
b7a2db4de254
permissions
-rw-r--r--

8051889: Implement block scoping in symbol assignment and scope computation
Reviewed-by: attila, lagergren

     1 function f() {
     2         print("in f");
     3     }
     4 in f
     5 function f() {
     6         print("in f");
     7     }
     8 in f
     9 undefined
    10 ReferenceError: "f" is not defined

mercurial